From: simonpj Date: Wed, 2 Feb 2005 10:50:28 +0000 (+0000) Subject: [project @ 2005-02-02 10:50:28 by simonpj] X-Git-Tag: Initial_conversion_from_CVS_complete~1127 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=141169e59b413ede615139e419aca32565a3fe18;p=ghc-hetmet.git [project @ 2005-02-02 10:50:28 by simonpj] Futher gruesome makefile hackery to deal with building lib/compat --- diff --git a/ghc/lib/compat/Makefile b/ghc/lib/compat/Makefile index 56220e9..fcb274d 100644 --- a/ghc/lib/compat/Makefile +++ b/ghc/lib/compat/Makefile @@ -18,8 +18,15 @@ MKDEPENDC_OPTS += -I$(GHC_INCLUDE_DIR) UseGhcForCc = YES # This library is linked to the compiler, at least in stage1, so we -# better make sure it is built the same "way": -SRC_HC_OPTS += $(GhcHcOpts) +# better make sure it is built the same "way". +# +# BUT, if GhcHcOpts includes -DDEBUG we *don't* want to compile +# lib/compat with -DDEBUG, because the preprocessor symbols used +# by the compiler may be understood differently by library code. +# In this particular case, it turned out that -DDEBUG made Cabal +# import HUnit, which might not be installed for the compiler we are +# compiling with (e.g. 6.2.1). Hence the filter-out. +SRC_HC_OPTS += $(filter-out -D%, $(GhcHcOpts)) ifeq "$(ghc_ge_603)" "YES" # These modules are all provided in GHC 6.3+