diff options
author | wolfgang <unknown> | 2004-03-10 00:18:21 +0000 |
---|---|---|
committer | wolfgang <unknown> | 2004-03-10 00:18:21 +0000 |
commit | 1ee6cec9e8c6f97033d4a44ccda3de599c731b62 (patch) | |
tree | ff4b6215f5d7380f0ed4de41e97063628116a394 | |
parent | fffbee64ed9fd968b357697c7ff39ff44453365c (diff) | |
download | haskell-1ee6cec9e8c6f97033d4a44ccda3de599c731b62.tar.gz |
[project @ 2004-03-10 00:18:21 by wolfgang]
Remove -static flag from non-darwin PowerPC builds
(this was a relic from the long-dead AIX support)
Merge to STABLE.
-rw-r--r-- | ghc/compiler/main/DriverFlags.hs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ghc/compiler/main/DriverFlags.hs b/ghc/compiler/main/DriverFlags.hs index 63c36ac7bd..a2ef2a1bf5 100644 --- a/ghc/compiler/main/DriverFlags.hs +++ b/ghc/compiler/main/DriverFlags.hs @@ -627,9 +627,6 @@ machdepCCOpts -- This is completely optional. = return ( ["-no-cpp-precomp","-mdynamic-no-pic"], [] ) - | prefixMatch "powerpc" cTARGETPLATFORM || prefixMatch "rs6000" cTARGETPLATFORM - = return ( ["-static"], ["-finhibit-size-directive"] ) - | otherwise = return ( [], [] ) |