summaryrefslogtreecommitdiff
path: root/hints/aix.sh
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-03-23 23:41:25 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-03-23 23:41:25 +0000
commit2973cfbe08c1a80f4799b8b261fc8e722106e799 (patch)
treeddc9f9716c90a1ae400b23d291b4c59ba666ed9a /hints/aix.sh
parent7bcb86fce1726fff66ae6da62ba3693682090cc3 (diff)
downloadperl-2973cfbe08c1a80f4799b8b261fc8e722106e799.tar.gz
AIX does seems to have optimization problems with its C compilers.
p4raw-id: //depot/perl@9317
Diffstat (limited to 'hints/aix.sh')
-rw-r--r--hints/aix.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/hints/aix.sh b/hints/aix.sh
index a55f244694..2f19f1cebb 100644
--- a/hints/aix.sh
+++ b/hints/aix.sh
@@ -146,6 +146,18 @@ case "$cc" in
***
EOF
;;
+ 5.0.0.0)
+ cat >&4 <<EOF
+***
+*** This C compiler ($ccversion) is known to have optimizer problems
+*** when compiling perl.c.
+***
+*** Disabling optimization for that file but consider upgrading
+*** your C compiler.
+***
+EOF
+perl_cflags='optimize='
+ ;;
5.0.1.0)
cat >&4 <<EOF
***