From: Ian Lynagh Date: Sat, 1 Sep 2007 11:30:18 +0000 (+0000) Subject: Set -Wall -fno-warn-name-shadowing in compiler/ when stage /= 2 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=019ad00f4989b2e81d62c30c7a4de4aadc30ebdc Set -Wall -fno-warn-name-shadowing in compiler/ when stage /= 2 --- diff --git a/compiler/Makefile b/compiler/Makefile index 6f3c94c..67962bc 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -165,6 +165,10 @@ odir=stage$(stage) SRC_HC_OPTS += $(patsubst %, -i$(odir)/%, $(ALL_DIRS)) +ifneq "$(stage)" "1" +SRC_HC_OPTS += -Wall -fno-warn-name-shadowing +endif + HS_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(HS_SRCS)))) C_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(C_SRCS))))