summaryrefslogtreecommitdiff
path: root/hints
diff options
context:
space:
mode:
authorPeter Prymmer <PPrymmer@factset.com>2000-10-24 05:57:22 -0700
committerJarkko Hietaniemi <jhi@iki.fi>2000-10-25 13:48:41 +0000
commit8d4151d38b6388a812272063c381dbe6deb90843 (patch)
tree78e4a6d683e5afbdaaae7c6054866508b62618c4 /hints
parentbd0e0981ad1b91dd1e1d75c33e1e405c39ceca34 (diff)
downloadperl-8d4151d38b6388a812272063c381dbe6deb90843.tar.gz
AIX is picky about its symbol exports. Solution for now
is to include the deb.o explicitly to the re extension build. Subject: Re: introduce missing .Perl_deb symbol to aix build (Questions) Message-ID: <Pine.OSF.4.10.10010241252180.127055-100000@aspara.forte.com> p4raw-id: //depot/perl@7434
Diffstat (limited to 'hints')
-rw-r--r--hints/aix.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/hints/aix.sh b/hints/aix.sh
index cf7e43cce7..35ee662350 100644
--- a/hints/aix.sh
+++ b/hints/aix.sh
@@ -130,6 +130,13 @@ case "$cc" in
*gcc*) ccdlflags='-Xlinker' ;;
*) ccversion=`lslpp -L | grep 'C for AIX Compiler$' | awk '{print $2}'`
case "$ccversion" in
+ '') ccversion=`lslpp -L | grep 'IBM C and C++ Compilers LUM$' | awk '{print $2}'`
+ ;;
+ esac
+ case "$ccversion" in
+ 3.6.6.0)
+ optimize='none'
+ ;;
4.4.0.0|4.4.0.1|4.4.0.2)
echo >&4 "*** This C compiler ($ccversion) is outdated."
echo >&4 "*** Please upgrade to at least 4.4.0.3."