diff options
author | Andy Dougherty <doughera@lafayette.edu> | 2004-05-11 09:14:42 -0400 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2004-05-12 10:43:42 +0000 |
commit | 00e89ad4bdb96e09c9ac232f26acc05942ca5f74 (patch) | |
tree | 6b08fb615b5930b7b4b8573528072f7f3e922f66 /hints | |
parent | 59f20ca5be6f62ae0afd1d5e20092f7cf757efc3 (diff) | |
download | perl-00e89ad4bdb96e09c9ac232f26acc05942ca5f74.tar.gz |
Configure shouldn't unconditionally add in -pipe
Message-ID: <Pine.SOL.4.58.0405111313210.14279@maxwell.phys.lafayette.edu>
p4raw-id: //depot/perl@22815
Diffstat (limited to 'hints')
-rw-r--r-- | hints/darwin.sh | 3 | ||||
-rw-r--r-- | hints/rhapsody.sh | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/hints/darwin.sh b/hints/darwin.sh index e117a26366..9223abd7e6 100644 --- a/hints/darwin.sh +++ b/hints/darwin.sh @@ -89,12 +89,11 @@ fi ;; esac -# -pipe: makes compilation go faster. # -fno-common because common symbols are not allowed in MH_DYLIB # -DPERL_DARWIN: apparently the __APPLE__ is not sanctioned by Apple # as the way to differentiate Mac OS X. (The official line is that # *no* cpp symbol does differentiate Mac OS X.) -ccflags="${ccflags} -pipe -fno-common -DPERL_DARWIN" +ccflags="${ccflags} -fno-common -DPERL_DARWIN" # At least on Darwin 1.3.x: # diff --git a/hints/rhapsody.sh b/hints/rhapsody.sh index ed32402c62..6151e7858d 100644 --- a/hints/rhapsody.sh +++ b/hints/rhapsody.sh @@ -53,9 +53,8 @@ libc='/System/Library/Frameworks/System.framework/System'; # Optimize. optimize='-O3'; -# -pipe: makes compilation go faster. # -fno-common because common symbols are not allowed in MH_DYLIB -ccflags="${ccflags} -pipe -fno-common" +ccflags="${ccflags} -fno-common" # Unverified whether this is necessary on Rhapsody, but the test shouldn't hurt. # At least on Darwin 1.3.x: |