give a larger default GC size

This commit is contained in:
Evan Czaplicki 2019-07-01 22:20:55 -04:00
parent 7ec0a07169
commit 92d286295d

View File

@ -38,7 +38,7 @@ Executable elm
if flag(dev)
ghc-options: -O0 -Wall -Werror
else
ghc-options: -O2 -rtsopts -threaded "-with-rtsopts=-N -qg"
ghc-options: -O2 -rtsopts -threaded "-with-rtsopts=-N -qg -A128m"
-- add -eventlog for (elm make src/Main.elm +RTS -l; threadscope elm.eventlog)
-- https://www.oreilly.com/library/view/parallel-and-concurrent/9781449335939/