aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-08-13 09:30:06 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2018-08-13 09:30:06 -0700
commit91cc2492fac8ebfbb88d6873f834ca7c73a0f83f (patch)
tree82f347ddfdafab998744df7003ab9cc16846901a
parent6d14f53bd96f123acb5d8030cf9402ddb2e41f01 (diff)
downloadpandoc-91cc2492fac8ebfbb88d6873f834ca7c73a0f83f.tar.gz
Makefile: ghc options to speed compilation for 'make quick'.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 21830d27e..095264f7f 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ pandoc=$(shell find dist -name pandoc -type f -exec ls -t {} \; | head -1)
SOURCEFILES?=$(shell find pandoc.hs src test -name '*.hs')
BRANCH?=master
RESOLVER=lts-12
-GHCOPTS=-fdiagnostics-color=always -Wall -fno-warn-unused-do-bind -Wincomplete-record-updates -Wnoncanonical-monad-instances -Wnoncanonical-monadfail-instances -Wincomplete-uni-patterns -Werror=missing-home-modules -Widentities -Wcpp-undef
+GHCOPTS=-fdiagnostics-color=always -Wall -fno-warn-unused-do-bind -Wincomplete-record-updates -Wnoncanonical-monad-instances -Wnoncanonical-monadfail-instances -Wincomplete-uni-patterns -Werror=missing-home-modules -Widentities -Wcpp-undef -j +RTS -A32M -RTS
# Later:
# -Wpartial-fields (currently used in Powerpoint writer)
# -Wmissing-export-lists (currently some Odt modules violate this)