Skip to content

Commit

Permalink
remove 'suggested' heap size from RTS options in makefile
Browse files Browse the repository at this point in the history
The suggested heap size also seems to set a maximum.
I don't why we have a suggested heap size anyway, so I just removed that, since make failed with agda 2.6.4.1, compiled with ghc 9.8.1.
  • Loading branch information
felixwellen committed Dec 4, 2023
1 parent bd6f5de commit 6ebe52b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ AGDA_BIN?=agda
AGDA_FLAGS?=-W error
AGDA_EXEC?=$(AGDA_BIN) $(AGDA_FLAGS)
FIX_WHITESPACE?=fix-whitespace
RTS_OPTIONS=+RTS -H6G -RTS
RTS_OPTIONS= # +RTS $OPTIONS -RTS
AGDA=$(AGDA_EXEC) $(RTS_OPTIONS)
RUNHASKELL?=runhaskell
EVERYTHINGS=$(RUNHASKELL) ./Everythings.hs
Expand Down

0 comments on commit 6ebe52b

Please sign in to comment.