From: simonpj@microsoft.com Date: Fri, 13 Aug 2010 14:00:21 +0000 (+0000) Subject: Do not build DPH when GhcProfiled (fixes #4172) X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=c9020b2b6b0bee7ebe6f7bb0ba1b93680b0922c5;hp=6efa3901fd6f1583fb654bd3659e88702dfd579a Do not build DPH when GhcProfiled (fixes #4172) Reason: DPH uses Template Haskell and TH doesn't work in a profiled compiler --- diff --git a/ghc.mk b/ghc.mk index 5df9e89..fadaccd 100644 --- a/ghc.mk +++ b/ghc.mk @@ -345,6 +345,10 @@ $(eval $(call addPackage,haskeline)) $(foreach pkg,$(EXTRA_PACKAGES),$(eval $(call addPackage,$(pkg)))) ifneq "$(BootingFromHc)" "YES" + +ifneq "$(GhcProfiled)" "YES" +# DPH uses Template Haskell, and Template Haskell doesn't work +# with a profiled compiler. So if stage-2 is profile, don't build DPH PACKAGES_STAGE2 += \ dph/dph-base \ dph/dph-prim-interface \ @@ -353,6 +357,7 @@ PACKAGES_STAGE2 += \ dph/dph-seq \ dph/dph-par endif +endif # We assume that the stage0 compiler has a suitable bytestring package, # so we don't have to include it below.