diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-09 20:17:50 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-09 20:17:50 +0000 |
commit | f737ff5cc74b702da0c62b353d50f819128f0d34 (patch) | |
tree | 1987394f468e666f51503eb29911cbfba5d0c755 /hints | |
parent | a58cd3886c9d95c90d38c64ce408901a2a4fe350 (diff) | |
download | perl-f737ff5cc74b702da0c62b353d50f819128f0d34.tar.gz |
Integrate change #8682 from maintperl.
IRIX hints fix from Scott Henry, get Configure -Dcc="cc -64 -mips3"
to work correctly.
p4raw-link: @8682 on //depot/maint-5.6/perl: 9524ea9fdf0a6b7bf0bab788b2760d62f3f67df2
p4raw-id: //depot/perl@8753
p4raw-integrated: from //depot/maint-5.6/perl@8752 'copy in'
hints/irix_6.sh (@8152..)
Diffstat (limited to 'hints')
-rw-r--r-- | hints/irix_6.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hints/irix_6.sh b/hints/irix_6.sh index 32335a0bb8..e6117cf1af 100644 --- a/hints/irix_6.sh +++ b/hints/irix_6.sh @@ -117,7 +117,7 @@ esac' libc='/usr/lib32/libc.so' plibpth='/usr/lib32 /lib32 /usr/ccs/lib' ;; -*"cc -64") +*"cc -64"*) loclibpth="$loclibpth /usr/lib64" libscheck='case "`/usr/bin/file $xxx`" in @@ -162,7 +162,7 @@ esac # Settings common to both native compiler modes. case "$cc" in -*"cc -n32"|*"cc -64") +*"cc -n32"*|*"cc -64"*) ld=$cc # perl's malloc can return improperly aligned buffer |