diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-12 21:49:16 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-12 21:49:16 +0000 |
commit | 361d830d0a5e2632acc25666b19dd4b16f29f7cd (patch) | |
tree | b2cb36400d8906bcf5d791174cba1ff40d79c510 /hints/irix_6.sh | |
parent | ca86e6a07fade85950f579f6189846c438e0eb8c (diff) | |
download | perl-361d830d0a5e2632acc25666b19dd4b16f29f7cd.tar.gz |
IRIX64 needs more -mabi=64 with gcc.
p4raw-id: //depot/cfgperl@3976
Diffstat (limited to 'hints/irix_6.sh')
-rw-r--r-- | hints/irix_6.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hints/irix_6.sh b/hints/irix_6.sh index 84561b7faa..15f1cbdd3b 100644 --- a/hints/irix_6.sh +++ b/hints/irix_6.sh @@ -126,7 +126,10 @@ malloc_cflags='ccflags="-DSTRICT_ALIGNMENT $ccflags"' # and returning small structures. This affects inet_*() and semctl(). # See http://reality.sgi.com/ariel/freeware/gcc-2.8.1-notes.html # for more information. Reported by Lionel Cons <lionel.cons@cern.ch>. - IRIX64) ccflags="$ccflags -mabi=64" ;; + IRIX64) ccflags="$ccflags -mabi=64" + ldflags="$ldflags -mabi=64 -L/usr/lib64" + lddlflags="$lddlflags -mabi=64" + ;; esac ;; *) |