From d0b244f7d8c061112633a29f821a479c2355c405 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 30 Aug 2008 19:13:05 +0000 Subject: [PATCH] If we want a profiled GHC then use -auto-all when building the GHC lib --- compiler/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/compiler/Makefile b/compiler/Makefile index c511eeb..03f9c1e 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -165,6 +165,10 @@ endif # profiling enabled (GhcProfiled = YES). ifneq "$(GhcLibProfiled) $(GhcProfiled)" "NO NO" CONFIGURE_FLAGS_STAGE2 += --enable-library-profiling +# And if we're profiling GHC then we want lots of SCCs +ifeq "$(GhcProfiled)" "YES" +CONFIGURE_FLAGS_STAGE2 += --ghc-option=-auto-all +endif endif ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32" -- 1.7.10.4