Fix scoped type variables for expression type signatures
[ghc-hetmet.git] / mk / build.mk.sample
index 9f726d2..8541e51 100644 (file)
@@ -5,14 +5,10 @@
 # overall build type, and then tweak the options in the relevant section
 # below.
 
-BuildFlavour = devel
-#BuildFlavour = perf
-
-# -------- Misc. settings -----------------------------------------------------
+# Uncomment one of these to select a build profile below:
 
-# Not necessary to set this, but useful if you have other projects checked-out
-# in your source tree.
-ProjectsToBuild = glafp-utils ghc libraries hslibs
+#BuildFlavour = devel
+#BuildFlavour = perf
 
 # Which warnings we like to use
 MyWarningOpts   = -W -fno-warn-unused-matches -fwarn-unused-imports
@@ -23,10 +19,15 @@ ifeq "$(BuildFlavour)" "devel"
 
 GhcCompilerWays =
 
-SRC_HC_OPTS   = -H32m -O0 $(MyWarningOpts)
-GhcHcOpts     = -Rghc-timing -DDEBUG
-GhcLibHcOpts  = -O -dcore-lint $(MyWarningOpts) -keep-hc-files 
-GhcLibWays    =
+SRC_HC_OPTS     = -H32m -O -fasm $(MyWarningOpts)
+GhcLibHcOpts    = -O -dcore-lint $(MyWarningOpts)
+GhcLibWays      =
+
+# If you're working on the stage1 compiler, build stage1 with debugging:
+GhcStage1HcOpts = -Rghc-timing -O0 -DDEBUG
+
+# alternatively, to work on the stage 2 compiler:
+# GhcStage2HcOpts = -Rghc-timing -O0 -DDEBUG
 
 # profiled RTS
 #GhcRtsCcOpts =  -pg -g