diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-22 16:42:04 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-22 16:42:04 +0000 |
commit | 8312154f7760b9a177c1bc9d98e634a9f7c4f1fc (patch) | |
tree | f9d710fea6cba3e390dee0b8ff0f47033c6e1c4a /hints/irix_6.sh | |
parent | 0776ebf09c58b6dd41e996945495d82168d1a73e (diff) | |
download | perl-8312154f7760b9a177c1bc9d98e634a9f7c4f1fc.tar.gz |
Retract #12134; reintroduce #11949: PADOFFSETs are now UVs
(suggested by Sarathy, extensions shouldn't be dabbling with
op structures, so binary backward compatibility should not be
an issue.)
p4raw-id: //depot/perl@12138
Diffstat (limited to 'hints/irix_6.sh')
-rw-r--r-- | hints/irix_6.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hints/irix_6.sh b/hints/irix_6.sh index 3796f89ece..6f4ca17881 100644 --- a/hints/irix_6.sh +++ b/hints/irix_6.sh @@ -188,11 +188,11 @@ case "$cc" in # Check for which version of the compiler we're running case "`$cc -version 2>&1`" in *7.0*) # Mongoose 7.0 - ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1042,1048,1110,1116,1174,1184,1552,3187 -OPT:Olimit=0" + ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1042,1048,1110,1116,1174,1184,1552 -OPT:Olimit=0" optimize='none' ;; *7.1*|*7.2|*7.20) # Mongoose 7.1+ - ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552,3187 -OPT:Olimit=0" + ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552 -OPT:Olimit=0" optimize='-O3' # This is a temporary fix for 5.005. # Leave pp_ctl_cflags line at left margin for Configure. See @@ -201,15 +201,15 @@ case "$cc" in pp_ctl_cflags='optimize=-O' ;; *7.*) # Mongoose 7.2.1+ - ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552,3187 -OPT:Olimit=0:space=ON" + ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552 -OPT:Olimit=0:space=ON" optimize='-O3' ;; *6.2*) # Ragnarok 6.2 - ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552,3187" + ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552" optimize='none' ;; *) # Be safe and not optimize - ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552,3187 -OPT:Olimit=0" + ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552 -OPT:Olimit=0" optimize='none' ;; esac |