diff options
author | simonmar <unknown> | 2002-07-29 11:22:31 +0000 |
---|---|---|
committer | simonmar <unknown> | 2002-07-29 11:22:31 +0000 |
commit | 94f8d8aefd7779d8b9ebb36b6bf46bf93bbfd98f (patch) | |
tree | cf2704c743bf9531ae947c327ae6783eb19bef8f | |
parent | 5bca72372c6596012685063cb14cc4c6848fbc74 (diff) | |
download | haskell-94f8d8aefd7779d8b9ebb36b6bf46bf93bbfd98f.tar.gz |
[project @ 2002-07-29 11:22:31 by simonmar]
Back out previous commit; -static is on by default and we don't want
to always pass -static to the linker.
-rw-r--r-- | ghc/compiler/main/DriverPipeline.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ghc/compiler/main/DriverPipeline.hs b/ghc/compiler/main/DriverPipeline.hs index 944802e74b..c2d4235186 100644 --- a/ghc/compiler/main/DriverPipeline.hs +++ b/ghc/compiler/main/DriverPipeline.hs @@ -949,7 +949,6 @@ doLink o_files = do #endif ++ pkg_extra_ld_opts ++ extra_ld_opts - ++ (if static then [ "-static" ] else []) ++ if static && not no_hs_main then [ "-u", prefixUnderscore "Main_zdmain_closure"] else [])) |