From 118b39e4db1a8187af52c1ddb1b299021834a5a2 Mon Sep 17 00:00:00 2001 From: Duncan Coutts Date: Wed, 29 Apr 2009 14:29:40 +0000 Subject: [PATCH] Don't actually build ghc itself with -dynamic For now, with --enable-shared we'll build the libs shared, but ghc itself will still be statically linked. In any case, we would want to be able to build it both ways so it's easy to test both. --- ghc/ghc.mk | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ghc/ghc.mk b/ghc/ghc.mk index 2f6fb80..6df7c0c 100644 --- a/ghc/ghc.mk +++ b/ghc/ghc.mk @@ -33,10 +33,6 @@ ghc_stage2_HC_OPTS += -threaded ghc_stage3_HC_OPTS += -threaded endif -ifeq "$(BuildSharedLibs)" "YES" -ghc_HC_OPTS += -dynamic -endif - # XXX ToDp # ifeq "$(GhcProfiled)" "YES" -- 1.7.10.4