diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-03 19:14:01 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-03 19:14:01 +0000 |
commit | ea437474a2ef8d1c554444df9e9faca78e36bcd1 (patch) | |
tree | 3f8e13fa1441e2b8fcf040fcf5300c05ed933fd3 /hints/irix_6.sh | |
parent | 7e6fa307436d3e019e355ee1012a967957762854 (diff) | |
download | perl-ea437474a2ef8d1c554444df9e9faca78e36bcd1.tar.gz |
the workaround is needed in all 7.2.* compilers,
not just on IRIX64.
p4raw-id: //depot/cfgperl@5494
Diffstat (limited to 'hints/irix_6.sh')
-rw-r--r-- | hints/irix_6.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/hints/irix_6.sh b/hints/irix_6.sh index 5e36c31cf2..6119c0d282 100644 --- a/hints/irix_6.sh +++ b/hints/irix_6.sh @@ -207,9 +207,8 @@ esac # Don't groan about unused libraries. ldflags="$ldflags -Wl,-woff,84" -case "`uname -s`-`$cc -version 2>&1`" in -IRIX64-*7.2.*) -op_cflags='optimize=-O1' ;; # workaround for an optimizer bug +case "`$cc -version 2>&1`" in +*7.2.*) op_cflags='optimize=-O1' ;; # workaround for an optimizer bug esac # We don't want these libraries. |