From cc00752dc2fa7bd3f13624cdc1e048a423eaa845 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Fri, 15 May 2009 09:40:46 +0000 Subject: [PATCH] remove warning settings; we already have warnings turned on everywhere --- mk/build.mk.sample | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/mk/build.mk.sample b/mk/build.mk.sample index 4975de5..c49fd03 100644 --- a/mk/build.mk.sample +++ b/mk/build.mk.sample @@ -22,9 +22,6 @@ # A development build, working on the stage 2 compiler: #BuildFlavour = devel2 -# Which warnings we like to use -MyWarningOpts = -W -fno-warn-unused-matches -fwarn-unused-imports - GhcLibWays = v # -------- 1. A Performance/Distribution build-------------------------------- @@ -78,8 +75,8 @@ endif ifeq "$(BuildFlavour)" "devel1" -SRC_HC_OPTS = -H64m -O -fasm $(MyWarningOpts) -GhcLibHcOpts = -O -dcore-lint $(MyWarningOpts) +SRC_HC_OPTS = -H64m -O -fasm +GhcLibHcOpts = -O -dcore-lint GhcStage1HcOpts = -Rghc-timing -O0 -DDEBUG GhcStage2HcOpts = -Rghc-timing -O -fasm SplitObjs = NO @@ -94,8 +91,8 @@ endif ifeq "$(BuildFlavour)" "devel2" -SRC_HC_OPTS = -H64m -O -fasm $(MyWarningOpts) -GhcLibHcOpts = -O -dcore-lint $(MyWarningOpts) +SRC_HC_OPTS = -H64m -O -fasm +GhcLibHcOpts = -O -dcore-lint GhcStage1HcOpts = -Rghc-timing -O -fasm GhcStage2HcOpts = -Rghc-timing -O0 -DDEBUG SplitObjs = NO -- 1.7.10.4