From: wolfgang Date: Wed, 10 Mar 2004 00:18:21 +0000 (+0000) Subject: [project @ 2004-03-10 00:18:21 by wolfgang] X-Git-Tag: Approx_11550_changesets_converted~12 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=1ee6cec9e8c6f97033d4a44ccda3de599c731b62 [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. --- diff --git a/ghc/compiler/main/DriverFlags.hs b/ghc/compiler/main/DriverFlags.hs index 63c36ac..a2ef2a1b 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 ( [], [] )