From 276ee4fab2cb8e28be2b8924e3c85fa1fb902aff Mon Sep 17 00:00:00 2001 From: ken Date: Tue, 24 Jul 2001 04:47:06 +0000 Subject: [PATCH] [project @ 2001-07-24 04:47:06 by ken] Added missing hyphen in frnot of machdepCCOpts for mips and powerpc. --- ghc/compiler/main/DriverFlags.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghc/compiler/main/DriverFlags.hs b/ghc/compiler/main/DriverFlags.hs index 4943cd4..b3cb69f 100644 --- a/ghc/compiler/main/DriverFlags.hs +++ b/ghc/compiler/main/DriverFlags.hs @@ -1,7 +1,7 @@ {-# OPTIONS -#include "hschooks.h" #-} ----------------------------------------------------------------------------- --- $Id: DriverFlags.hs,v 1.62 2001/07/24 04:46:37 ken Exp $ +-- $Id: DriverFlags.hs,v 1.63 2001/07/24 04:47:06 ken Exp $ -- -- Driver flags -- @@ -505,10 +505,10 @@ machdepCCOpts ) | prefixMatch "mips" cTARGETPLATFORM - = return ( ["static"], [] ) + = return ( ["-static"], [] ) | prefixMatch "powerpc" cTARGETPLATFORM || prefixMatch "rs6000" cTARGETPLATFORM - = return ( ["static"], ["-finhibit-size-directive"] ) + = return ( ["-static"], ["-finhibit-size-directive"] ) | otherwise = return ( [], [] ) -- 1.7.10.4