diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2004-08-03 23:48:13 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2004-08-03 23:48:13 +0000 |
commit | ad5c63c6cecbd2f3619070c0fd8ea7f3132c0eae (patch) | |
tree | cc59de1d4e6e12ca3780227d053790dd1024b111 /hints/aix.sh | |
parent | ddfa107c1b1f4a56f36bb18fc7c4fc45ab1119d0 (diff) | |
download | perl-ad5c63c6cecbd2f3619070c0fd8ea7f3132c0eae.tar.gz |
gcc on AIX doesn't like -G on the commandline
p4raw-id: //depot/perl@23188
Diffstat (limited to 'hints/aix.sh')
-rw-r--r-- | hints/aix.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hints/aix.sh b/hints/aix.sh index baf8c00303..8a10840b59 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -318,6 +318,7 @@ libswanted_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LIBS 2>/dev/null|sed -e 's@ ccflags="`echo $ccflags | sed -e 's@ -b@ -Wl,-b@g'`" ldflags="`echo ' '$ldflags | sed -e 's@ -b@ -Wl,-b@g'`" lddlflags="`echo ' '$lddlflags | sed -e 's@ -b@ -Wl,-b@g'`" + lddlflags="`echo ' '$lddlflags | sed -e 's@ -G @ -Wl,-G @g'`" ld='gcc' echo >&4 "(using ccflags $ccflags)" echo >&4 "(using ldflags $ldflags)" |