summaryrefslogtreecommitdiff
path: root/mk/build.mk.sample
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2008-05-20 08:05:35 +0000
committerSimon Marlow <marlowsd@gmail.com>2008-05-20 08:05:35 +0000
commitf7963d3f11e67375b8c6ecbd71e56f0d0ac262dd (patch)
tree0da1b244d06472f5bfee33a51d45ec3fc8d2e993 /mk/build.mk.sample
parent847b9f6ac38debcf856df3c498ba7f4a7618cdd1 (diff)
downloadhaskell-f7963d3f11e67375b8c6ecbd71e56f0d0ac262dd.tar.gz
update the "perf" settings to match the default
Diffstat (limited to 'mk/build.mk.sample')
-rw-r--r--mk/build.mk.sample12
1 files changed, 8 insertions, 4 deletions
diff --git a/mk/build.mk.sample b/mk/build.mk.sample
index 34d260a712..44b2537f67 100644
--- a/mk/build.mk.sample
+++ b/mk/build.mk.sample
@@ -29,10 +29,14 @@ MyWarningOpts = -W -fno-warn-unused-matches -fwarn-unused-imports
ifeq "$(BuildFlavour)" "perf"
-SRC_HC_OPTS = -H32m -O2
-GhcHcOpts = -Rghc-timing
-GhcLibHcOpts =
-GhcLibWays = p
+# perf matches the default settings, repeated here for comparison:
+
+SRC_HC_OPTS = -O -H64m
+GhcStage1HcOpts = -O -fasm
+GhcStage2HcOpts = -O2 -fasm
+GhcHcOpts = -Rghc-timing
+GhcLibHcOpts = -O2 -fgenerics
+GhcLibWays = p
endif