diff options
author | John MacFarlane <jgm@berkeley.edu> | 2021-03-16 10:02:25 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2021-03-16 10:38:51 -0700 |
commit | d0af5795f1de5a75028d48b2d48105d435cbbac3 (patch) | |
tree | 59804ab3b139b15ffe2eb0c5744d55717621a6e2 /Makefile | |
parent | afa801ed3fbb37f90365edaa8f4d3a96b1cc362f (diff) | |
download | pandoc-d0af5795f1de5a75028d48b2d48105d435cbbac3.tar.gz |
make quick: use -j4 to speed up build
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ REVISION?=1 BENCHARGS?=--timeout=6 +RTS -T -RTS $(if $(PATTERN),--pattern "$(PATTERN)",) quick: - stack install --ghc-options='$(GHCOPTS)' --install-ghc --flag 'pandoc:embed_data_files' --fast --test --ghc-options='-j +RTS -A64m -RTS' --test-arguments='-j4 --hide-successes $(TESTARGS)' + stack install --ghc-options='$(GHCOPTS)' --install-ghc --flag 'pandoc:embed_data_files' --fast --test --ghc-options='-j4 +RTS -A256m -RTS' --test-arguments='-j4 --hide-successes $(TESTARGS)' quick-cabal: cabal new-configure . --ghc-options '$(GHCOPTS)' --disable-optimization --enable-tests |