AIX tweak from Merijn Brand.
[p5sagit/p5-mst-13.2.git] / hints / aix.sh
CommitLineData
1aef975c 1# hints/aix.sh
2# AIX 3.x.x hints thanks to Wayne Scott <wscott@ichips.intel.com>
3# AIX 4.1 hints thanks to Christopher Chan-Nui <channui@austin.ibm.com>.
52e1cb5e 4# AIX 4.1 pthreading by Christopher Chan-Nui <channui@austin.ibm.com> and
4e774c84 5# Jarkko Hietaniemi <jhi@iki.fi>.
19e194ad 6# AIX 4.3.x LP64 build by Steven Hirsch <hirschs@btv.ibm.com>
1aef975c 7# Merged on Mon Feb 6 10:22:35 EST 1995 by
8# Andy Dougherty <doughera@lafcol.lafayette.edu>
9
bbc711f9 10#
11# Contact dfavor@corridor.com for any of the following:
12#
13# - AIX 43x and above support
14# - gcc + threads support
15# - socks support
16#
17# Apr 99 changes:
18#
19# - use nm in AIX 43x and above
20# - gcc + threads now builds
29209bc5 21# [(added support for socks) Jul 99 SOCKS support rewritten]
bbc711f9 22#
23# Notes:
24#
25# - shared libperl support is tricky. if ever libperl.a ends up
26# in /usr/local/lib/* it can override any subsequent builds of
27# that same perl release. to make sure you know where the shared
28# libperl.a is coming from do a 'dump -Hv perl' and check all the
29# library search paths in the loader header.
30#
31# it would be nice to warn the user if a libperl.a exists that is
32# going to override the current build, but that would be complex.
33#
34# better yet, a solid fix for this situation should be developed.
35#
1aef975c 36
37# Configure finds setrgid and setruid, but they're useless. The man
38# pages state:
39# setrgid: The EPERM error code is always returned.
40# setruid: The EPERM error code is always returned. Processes cannot
4e774c84 41# reset only their real user IDs.
a0d0e21e 42d_setrgid='undef'
43d_setruid='undef'
1aef975c 44
5f3774a9 45alignbytes=8
a5f75d66 46
86959918 47case "$usemymalloc" in
48'') usemymalloc='n' ;;
49esac
bbc711f9 50
51# Intuiting the existence of system calls under AIX is difficult,
52# at best; the safest technique is to find them empirically.
53
54# AIX 4.3.* and above default to using nm for symbol extraction
55case "$osvers" in
531b8861 56 3.*|4.1.*|4.2.*|4.3.0.*)
bbc711f9 57 usenm='undef'
61d42ce4 58 usenativedlopen='false'
bbc711f9 59 ;;
60 *)
61 usenm='true'
61d42ce4 62 usenativedlopen='true'
bbc711f9 63 ;;
64esac
cc628cc3 65
3c321fdc 66so="a"
0d9ec2f4 67# AIX itself uses .o (libc.o) but we prefer compatibility
68# with the rest of the world and with rest of the scripting
69# languages (Tcl, Python) and related systems (SWIG).
70# Stephanie Beals <bealzy@us.ibm.com>
71dlext="so"
3c321fdc 72
19e194ad 73# Take possible hint from the environment. If 32-bit is set in the
74# environment, we can override it later. If set for 64, the
75# 'sizeof' test sees a native 64-bit architecture and never looks back.
76case "$OBJECT_MODE" in
7732)
78 cat >&4 <<EOF
79
80You have OBJECT_MODE=32 set in the environment.
81I take this as a hint you do not want to
82build for a 64-bit address space. You will be
83given the opportunity to change this later.
84EOF
85 ;;
8664)
87 cat >&4 <<EOF
88
89You have OBJECT_MODE=64 set in the environment.
90This forces a full 64-bit build. If that is
91not what you intended, please terminate this
92program, unset it and restart.
93EOF
94 ;;
95*) ;;
96esac
97
bbc711f9 98# Trying to set this breaks the POSIX.c compilation
99
1aef975c 100# Make setsockopt work correctly. See man page.
101# ccflags='-D_BSD=44'
102
103# uname -m output is too specific and not appropriate here
104case "$archname" in
105'') archname="$osname" ;;
106esac
107
bd9b35c9 108cc=${cc:-cc}
109
1aef975c 110case "$osvers" in
1113*) d_fchmod=undef
fc2c2f48 112 ccflags="$ccflags -D_ALL_SOURCE"
1aef975c 113 ;;
114*) # These hints at least work for 4.x, possibly other systems too.
fc2c2f48 115 ccflags="$ccflags -D_ALL_SOURCE -D_ANSI_C_SOURCE -D_POSIX_SOURCE"
80589958 116 case "$cc" in
117 *gcc*) ;;
86959918 118 *) ccflags="$ccflags -qmaxmem=16384" ;;
80589958 119 esac
1aef975c 120 nm_opt='-B'
1aef975c 121 ;;
122esac
123
bbc711f9 124# These functions don't work like Perl expects them to.
125d_setregid='undef'
126d_setreuid='undef'
127
1aef975c 128# Changes for dynamic linking by Wayne Scott <wscott@ichips.intel.com>
a0d0e21e 129#
130# Tell perl which symbols to export for dynamic linking.
b0f9136b 131cccdlflags='none' # All AIX code is position independent
4633a7c4 132case "$cc" in
5f9d9a17 133*gcc*) ccdlflags='-Xlinker' ;;
6b356c8e 134*) ccversion=`lslpp -L | grep 'C for AIX Compiler$' | awk '{print $2}'`
135 case "$ccversion" in
8d4151d3 136 '') ccversion=`lslpp -L | grep 'IBM C and C++ Compilers LUM$' | awk '{print $2}'`
137 ;;
138 esac
139 case "$ccversion" in
140 3.6.6.0)
141 optimize='none'
142 ;;
6b356c8e 143 4.4.0.0|4.4.0.1|4.4.0.2)
b7a20417 144 cat >&4 <<EOF
145***
146*** This C compiler ($ccversion) is outdated.
147***
148*** Please upgrade to at least 4.4.0.3.
149***
150EOF
151 ;;
2973cfbe 152 5.0.0.0)
153 cat >&4 <<EOF
154***
155*** This C compiler ($ccversion) is known to have optimizer problems
156*** when compiling perl.c.
157***
158*** Disabling optimization for that file but consider upgrading
159*** your C compiler.
160***
161EOF
162perl_cflags='optimize='
163 ;;
b7a20417 164 5.0.1.0)
165 cat >&4 <<EOF
166***
167*** This C compiler ($ccversion) is known to have optimizer problems
168*** when compiling regcomp.c.
169***
170*** Disabling optimization for that file but consider upgrading
171*** your C compiler.
172***
173EOF
174regcomp_cflags='optimize='
6b356c8e 175 ;;
176 esac
4633a7c4 177esac
5f9d9a17 178# the required -bE:$installarchlib/CORE/perl.exp is added by
179# libperl.U (Configure) later.
a0d0e21e 180
5cf1d1f1 181case "$ldlibpthname" in
182'') ldlibpthname=LIBPATH ;;
183esac
184
a0d0e21e 185# The first 3 options would not be needed if dynamic libs. could be linked
186# with the compiler instead of ld.
42793c05 187# -bI:$(PERL_INC)/perl.exp Read the exported symbols from the perl binary
4e774c84 188# -bE:$(BASEEXT).exp Export these symbols. This file contains only one
189# symbol: boot_$(EXP) can it be auto-generated?
c07a80fd 190case "$osvers" in
1913*)
6c79d5f6 192 lddlflags="$lddlflags -H512 -T512 -bhalt:4 -bM:SRE -bI:\$(PERL_INC)/perl.exp -bE:\$(BASEEXT).exp -e _nostart -lc"
c07a80fd 193 ;;
194*)
39816196 195 lddlflags="$lddlflags -bhalt:4 -bM:SRE -bI:\$(PERL_INC)/perl.exp -bE:\$(BASEEXT).exp -bnoentry -lc"
b691c02f 196 ;;
c07a80fd 197esac
3427abbf 198# AIX 4.2 (using latest patchlevels on 20001130) has a broken bind
199# library (getprotobyname and getprotobynumber are outversioned by
200# the same calls in libc, at least for xlc version 3...
201case "`oslevel`" in
765adc1d 202 4.2.1.*)
3427abbf 203 case "$ccversion" in # Don't know if needed for gcc
204 3.1.4.*) # libswanted "bind ... c ..." => "... c bind ..."
205 set `echo X "$libswanted "| sed -e 's/ bind\( .*\) \([cC]\) / \1 \2 bind /'`
206 shift
207 libswanted="$*"
208 ;;
209 esac
210 ;;
211 esac
52e1cb5e 212
104d25b7 213# This script UU/usethreads.cbu will get 'called-back' by Configure
214# after it has prompted the user for whether to use threads.
215cat > UU/usethreads.cbu <<'EOCBU'
216case "$usethreads" in
217$define|true|[yY]*)
4e774c84 218 ccflags="$ccflags -DNEED_PTHREAD_INIT"
219 case "$cc" in
220 gcc) ;;
221 cc_r) ;;
222 cc|xl[cC]_r)
bbc711f9 223 echo >&4 "Switching cc to cc_r because of POSIX threads."
224 # xlc_r has been known to produce buggy code in AIX 4.3.2.
4e774c84 225 # (e.g. pragma/overload core dumps) Let's suspect xlC_r, too.
bbc711f9 226 # --jhi@iki.fi
227 cc=cc_r
4e774c84 228 ;;
229 '')
bbc711f9 230 cc=cc_r
4e774c84 231 ;;
232 *)
233 cat >&4 <<EOM
6b356c8e 234*** For pthreads you should use the AIX C compiler cc_r.
235*** (now your compiler was set to '$cc')
236*** Cannot continue, aborting.
104d25b7 237EOM
4e774c84 238 exit 1
104d25b7 239 ;;
4e774c84 240 esac
241
c88be79f 242 # c_rify libswanted.
243 set `echo X "$libswanted "| sed -e 's/ \([cC]\) / \1_r /g'`
244 shift
245 libswanted="$*"
246 # c_rify lddlflags.
247 set `echo X "$lddlflags "| sed -e 's/ \(-l[cC]\) / \1_r /g'`
248 shift
249 lddlflags="$*"
250
251 # Insert pthreads to libswanted, before any libc or libC.
252 set `echo X "$libswanted "| sed -e 's/ \([cC]\) / pthreads \1 /'`
253 shift
254 libswanted="$*"
255 # Insert pthreads to lddlflags, before any libc or libC.
256 set `echo X "$lddlflags " | sed -e 's/ \(-l[cC]\) / -lpthreads \1 /'`
257 shift
258 lddlflags="$*"
259
104d25b7 260 ;;
261esac
262EOCBU
fa9667c9 263
8a647129 264# This script UU/uselargefiles.cbu will get 'called-back' by Configure
bd9b35c9 265# after it has prompted the user for whether to use large files.
8a647129 266cat > UU/uselargefiles.cbu <<'EOCBU'
bd9b35c9 267case "$uselargefiles" in
10cc9d2a 268''|$define|true|[yY]*)
21c7e20c 269 # Configure should take care of use64bitint and use64bitall being
270 # defined before uselargefiles.cbu is consulted.
271 if test X"$use64bitint:$quadtype" = X"$define:long" -o X"$use64bitall" = Xdefine; then
272# Keep these at the left margin.
273ccflags_uselargefiles="`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
274ldflags_uselargefiles="`getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
275 else
9422c00b 276# Keep these at the left margin.
45c9e83b 277ccflags_uselargefiles="`getconf XBS5_ILP32_OFFBIG_CFLAGS 2>/dev/null`"
278ldflags_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LDFLAGS 2>/dev/null`"
21c7e20c 279 fi
6b8eaf93 280 # _Somehow_ in AIX 4.3.1.0 the above getconf call manages to
281 # insert(?) *something* to $ldflags so that later (in Configure) evaluating
282 # $ldflags causes a newline after the '-b64' (the result of the getconf).
283 # (nothing strange shows up in $ldflags even in hexdump;
d553adec 284 # so it may be something (a bug) in the shell, instead?)
6b8eaf93 285 # Try it out: just uncomment the below line and rerun Configure:
45c9e83b 286# echo >&4 "AIX 4.3.1.0 $ldflags_uselargefiles mystery" ; exit 1
6b8eaf93 287 # Just don't ask me how AIX does it, I spent hours wondering.
45c9e83b 288 # Therefore the line re-evaluating ldflags_uselargefiles: it seems to fix
6b8eaf93 289 # the whatever it was that AIX managed to break. --jhi
45c9e83b 290 ldflags_uselargefiles="`echo $ldflags_uselargefiles`"
21c7e20c 291 if test X"$use64bitint:$quadtype" = X"$define:long" -o X"$use64bitall" = Xdefine; then
292# Keep this at the left margin.
293libswanted_uselargefiles="`getconf XBS5_LP64_OFF64_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
294 else
9422c00b 295# Keep this at the left margin.
45c9e83b 296libswanted_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
21c7e20c 297 fi
45c9e83b 298 case "$ccflags_uselargefiles$ldflags_uselargefiles$libs_uselargefiles" in
bd9b35c9 299 '');;
45c9e83b 300 *) ccflags="$ccflags $ccflags_uselargefiles"
301 ldflags="$ldflags $ldflags_uselargefiles"
302 libswanted="$libswanted $libswanted_uselargefiles"
bd9b35c9 303 ;;
304 esac
d553adec 305 case "$gccversion" in
306 '') ;;
307 *)
308 cat >&4 <<EOM
309
310*** Warning: gcc in AIX might not work with the largefile support of Perl
311*** (default since 5.6.0), this combination hasn't been tested.
312*** I will try, though.
313
314EOM
315 # Remove xlc-spefific -qflags.
316 ccflags="`echo $ccflags | sed -e 's@ -q[^ ]*@ @g' -e 's@^-q[^ ]* @@g'`"
317 ldflags="`echo $ldflags | sed -e 's@ -q[^ ]*@ @g' -e 's@^-q[^ ]* @@g'`"
b0f9136b 318 # Move xld-spefific -bflags.
319 ccflags="`echo $ccflags | sed -e 's@ -b@ -Wl,-b@g'`"
1bd6f77a 320 ldflags="`echo ' '$ldflags | sed -e 's@ -b@ -Wl,-b@g'`"
39816196 321 ld='gcc'
322 lddlflags="`echo $lddlflags | sed -e 's@ -b@ -Wl,-b@g'`"
765adc1d 323 echo >&4 "(using ccflags $ccflags)"
324 echo >&4 "(using ldflags $ldflags)"
325 echo >&4 "(using lddlflags $lddlflags)"
d553adec 326 ;;
327 esac
328 ;;
bd9b35c9 329esac
330EOCBU
6b8eaf93 331
10cc9d2a 332# This script UU/use64bitint.cbu will get 'called-back' by Configure
de6124c8 333# after it has prompted the user for whether to use 64 bit integers.
10cc9d2a 334cat > UU/use64bitint.cbu <<'EOCBU'
335case "$use64bitint" in
efeaa891 336$define|true|[yY]*)
2d4389e4 337 case "`oslevel`" in
efeaa891 338 3.*|4.[012].*)
339 cat >&4 <<EOM
2d4389e4 340AIX `oslevel` does not support 64-bit interfaces.
19e194ad 341You should upgrade to at least AIX 4.3.
efeaa891 342EOM
343 exit 1
344 ;;
345 esac
19e194ad 346 ;;
347esac
348EOCBU
349
19e194ad 350cat > UU/use64bitall.cbu <<'EOCBU'
de6124c8 351# This script UU/use64bitall.cbu will get 'called-back' by Configure
352# after it has prompted the user for whether to be maximally 64-bitty.
19e194ad 353case "$use64bitall" in
354$define|true|[yY]*)
355 case "`oslevel`" in
356 3.*|4.[012].*)
357 cat >&4 <<EOM
358AIX `oslevel` does not support 64-bit interfaces.
359You should upgrade to at least AIX 4.3.
360EOM
361 exit 1
362 ;;
363 esac
364 echo " "
365 echo "Checking the CPU width of your hardware..." >&4
366 $cat >size.c <<EOCP
367#include <stdio.h>
368#include <sys/systemcfg.h>
369int main (void)
370{
371 printf("%d\n",_system_configuration.width);
372 return(0);
373}
374EOCP
375 set size
376 if eval $compile_ok; then
9422c00b 377 qacpuwidth=`./size`
378 echo "You are running on $qacpuwidth bit hardware."
19e194ad 379 else
380 dflt="32"
381 echo " "
382 echo "(I can't seem to compile the test program. Guessing...)"
383 rp="What is the width of your CPU (in bits)?"
384 . ./myread
9422c00b 385 qacpuwidth="$ans"
19e194ad 386 fi
387 $rm -f size.c size
9422c00b 388 case "$qacpuwidth" in
19e194ad 389 32*)
390 cat >&4 <<EOM
391Bzzzt! At present, you can only perform a
392full 64-bit build on a 64-bit machine.
393EOM
394 exit 1
395 ;;
396 esac
9422c00b 397 qacflags="`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
398 qaldflags="`getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
19e194ad 399 # See jhi's comments above regarding this re-eval. I've
400 # seen similar weirdness in the form of:
401 #
402# 1506-173 (W) Option lm is not valid. Enter xlc for list of valid options.
403 #
404 # error messages from 'cc -E' invocation. Again, the offending
405 # string is simply not detectable by any means. Since it doesn't
406 # do any harm, I didn't pursue it. -- sh
9422c00b 407 qaldflags="`echo $qaldflags`"
408 qalibs="`getconf XBS5_LP64_OFF64_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
8a647129 409 # -q32 and -b32 may have been set by uselargefiles or user.
410 # Remove them.
19e194ad 411 ccflags="`echo $ccflags | sed -e 's@-q32@@'`"
412 ldflags="`echo $ldflags | sed -e 's@-b32@@'`"
413 # Tell archiver to use large format. Unless we remove 'ar'
414 # from 'trylist', the Configure script will just reset it to 'ar'
415 # immediately prior to writing config.sh. This took me hours
416 # to figure out.
bab3591f 417 trylist="`echo $trylist | sed -e 's@^ar @@' -e 's@ ar @ @g' -e 's@ ar$@@'`"
19e194ad 418 ar="ar -X64"
419 nm_opt="-X64 $nm_opt"
9422c00b 420 # Note: Placing the 'qacflags' variable into the 'ldflags' string
3a7209f1 421 # is NOT a typo. ldflags is passed to the C compiler for final
19e194ad 422 # linking, and it wants -q64 (-b64 is for ld only!).
9422c00b 423 case "$qacflags$qaldflags$qalibs" in
19e194ad 424 '');;
9422c00b 425 *) ccflags="$ccflags $qacflags"
426 ldflags="$ldflags $qacflags"
3a7209f1 427 lddlflags="$qaldflags $lddlflags"
9422c00b 428 libswanted="$libswanted $qalibs"
19e194ad 429 ;;
430 esac
431 case "$ccflags" in
432 *-DUSE_64_BIT_ALL*) ;;
433 *) ccflags="$ccflags -DUSE_64_BIT_ALL";;
434 esac
435 case "$archname64" in
436 ''|64*) archname64=64all ;;
437 esac
438 longsize="8"
439 # Don't try backwards compatibility
440 bincompat="$undef"
441 d_bincompat5005="$undef"
9422c00b 442 qacflags=''
443 qaldflags=''
444 qalibs=''
445 qacpuwidth=''
efeaa891 446 ;;
447esac
448EOCBU
5b877257 449
de6124c8 450cat > UU/uselongdouble.cbu <<'EOCBU'
d9b3e12d 451# This script UU/uselongdouble.cbu will get 'called-back' by Configure
2d4389e4 452# after it has prompted the user for whether to use long doubles.
d9b3e12d 453case "$uselongdouble" in
454$define|true|[yY]*)
cb19cdb0 455 # -qlongdouble for cc taken out on 20010522 cause it
456 # causes more trouble than it does any good --hmb
457 d_Gconvert='sprintf((b),"%.*llg",((int)(n)),(x))'
d9b3e12d 458 ;;
459esac
460EOCBU
461
61d42ce4 462if test $usenativedlopen = 'true'
463then
464 ccflags="$ccflags -DUSE_NATIVE_DLOPEN"
465 ldflags="$ldflags -brtl"
466else
467 # If the C++ libraries, libC and libC_r, are available we will prefer them
468 # over the vanilla libc, because the libC contain loadAndInit() and
469 # terminateAndUnload() which work correctly with C++ statics while libc
470 # load() and unload() do not. See ext/DynaLoader/dl_aix.xs.
471 # The C-to-C_r switch is done by usethreads.cbu, if needed.
472 if test -f /lib/libC.a -a X"`$cc -v 2>&1 | grep gcc`" = X; then
473 # Cify libswanted.
474 set `echo X "$libswanted "| sed -e 's/ c / C c /'`
475 shift
476 libswanted="$*"
477 # Cify lddlflags.
478 set `echo X "$lddlflags "| sed -e 's/ -lc / -lC -lc /'`
479 shift
480 lddlflags="$*"
481 fi
c88be79f 482fi
4e774c84 483
5b877257 484# EOF