aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2022-03-29 22:42:13 -0700
committerJohn MacFarlane <[email protected]>2022-03-29 22:42:13 -0700
commit97a9b2e70f82b034112c4d436796631cff4e0090 (patch)
tree2c8c727d886230bdcadef2f48329eda76fee6fc1 /Makefile
parent76748ee0fec8c2c1b8b85d6c8dfb0c5ad168d171 (diff)
Makefile: allow GHCOPTS in quick-cabal target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8c9069343..11ee4318e 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ REVISION?=1
BENCHARGS?=--csv bench_$(TIMESTAMP).csv $(BASELINECMD) --timeout=6 +RTS -T --nonmoving-gc -RTS $(if $(PATTERN),--pattern "$(PATTERN)",)
quick-cabal: ## build & test with stack, no optimizations
- cabal v2-test -j --disable-optimization --test-options="--hide-successes --ansi-tricks=false $(TESTARGS)" && cabal build -j --disable-optimization exe:pandoc
+ cabal v2-test --ghc-options='$(GHCOPTS)' --disable-optimization --test-options="--hide-successes --ansi-tricks=false $(TESTARGS)" && cabal build --ghc-options='$(GHCOPTS)' --disable-optimization exe:pandoc
# Note: to accept current results of golden tests,
# make test TESTARGS='--accept'