From 86e92d92bb0e540df18a89e3ddb3dd0dffd9d7c9 Mon Sep 17 00:00:00 2001 From: Bryan O'Sullivan Date: Sun, 8 May 2011 21:16:38 -0700 Subject: [PATCH] Enable RTS options for GHC >= 7 --- benchmarks/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmarks/Makefile b/benchmarks/Makefile index 9882082f6..c46ea17cc 100644 --- a/benchmarks/Makefile +++ b/benchmarks/Makefile @@ -6,10 +6,10 @@ binaries := AesonParse AesonEncode JsonParse all: $(binaries) $(binaries:%=%_p) %_p: %.hs - $(ghc) $(ghcflags) -prof -auto-all --make -o $@ $^ + $(ghc) $(ghcflags) -prof -auto-all -rtsopts --make -o $@ $^ %: %.hs - $(ghc) $(ghcflags) --make -o $@ $^ + $(ghc) $(ghcflags) --make -rtsopts -o $@ $^ clean: -rm -f *.o *.hi $(binaries) $(binaries:%=%_p)