diff options
author | Duncan Coutts <duncan@well-typed.com> | 2009-04-29 14:29:40 +0000 |
---|---|---|
committer | Duncan Coutts <duncan@well-typed.com> | 2009-04-29 14:29:40 +0000 |
commit | 118b39e4db1a8187af52c1ddb1b299021834a5a2 (patch) | |
tree | 83d97522ccfdb4f7915ea504c1a2cd9ba446716b /ghc/ghc.mk | |
parent | 66b0d2dea58a0eb13889e86069b9d8297de4c19c (diff) | |
download | haskell-118b39e4db1a8187af52c1ddb1b299021834a5a2.tar.gz |
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.
Diffstat (limited to 'ghc/ghc.mk')
-rw-r--r-- | ghc/ghc.mk | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ghc/ghc.mk b/ghc/ghc.mk index 2f6fb8010a..6df7c0cd27 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" |