add verbose stack display option, -Dvs
[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
e6cad49a 54# AIX 4.3.* and above default to letting Configure test if nm
55# extraction will work.
bbc711f9 56case "$osvers" in
56dbb940 57 3.*|4.1.*|4.2.*)
58 case "$usenm" in
59 '') usenm='undef'
60 esac
61 case "$usenativedlopen" in
62 '') usenativedlopen='false'
63 esac
bbc711f9 64 ;;
65 *)
56dbb940 66 case "$usenativedlopen" in
67 '') usenativedlopen='true'
68 esac
bbc711f9 69 ;;
70esac
cc628cc3 71
3c321fdc 72so="a"
0d9ec2f4 73# AIX itself uses .o (libc.o) but we prefer compatibility
74# with the rest of the world and with rest of the scripting
75# languages (Tcl, Python) and related systems (SWIG).
76# Stephanie Beals <bealzy@us.ibm.com>
77dlext="so"
3c321fdc 78
19e194ad 79# Take possible hint from the environment. If 32-bit is set in the
80# environment, we can override it later. If set for 64, the
81# 'sizeof' test sees a native 64-bit architecture and never looks back.
82case "$OBJECT_MODE" in
8332)
84 cat >&4 <<EOF
85
86You have OBJECT_MODE=32 set in the environment.
87I take this as a hint you do not want to
88build for a 64-bit address space. You will be
89given the opportunity to change this later.
90EOF
91 ;;
9264)
93 cat >&4 <<EOF
94
95You have OBJECT_MODE=64 set in the environment.
96This forces a full 64-bit build. If that is
97not what you intended, please terminate this
98program, unset it and restart.
99EOF
100 ;;
101*) ;;
102esac
103
bbc711f9 104# Trying to set this breaks the POSIX.c compilation
105
1aef975c 106# Make setsockopt work correctly. See man page.
107# ccflags='-D_BSD=44'
108
109# uname -m output is too specific and not appropriate here
110case "$archname" in
111'') archname="$osname" ;;
112esac
113
bd9b35c9 114cc=${cc:-cc}
115
1aef975c 116case "$osvers" in
1173*) d_fchmod=undef
fc2c2f48 118 ccflags="$ccflags -D_ALL_SOURCE"
1aef975c 119 ;;
120*) # These hints at least work for 4.x, possibly other systems too.
fc2c2f48 121 ccflags="$ccflags -D_ALL_SOURCE -D_ANSI_C_SOURCE -D_POSIX_SOURCE"
80589958 122 case "$cc" in
123 *gcc*) ;;
8437356b 124 *) ccflags="$ccflags -qmaxmem=16384 -qnoansialias" ;;
80589958 125 esac
1aef975c 126 nm_opt='-B'
1aef975c 127 ;;
128esac
129
bbc711f9 130# These functions don't work like Perl expects them to.
131d_setregid='undef'
132d_setreuid='undef'
133
1aef975c 134# Changes for dynamic linking by Wayne Scott <wscott@ichips.intel.com>
a0d0e21e 135#
136# Tell perl which symbols to export for dynamic linking.
b0f9136b 137cccdlflags='none' # All AIX code is position independent
851f49a8 138cc_type=xlc
4633a7c4 139case "$cc" in
851f49a8 140*gcc*)
141 cc_type=gcc
86c089c6 142 ccdlflags='-Xlinker'
143 if [ "X$gccversion" = "X" ]; then
144 # Done too late in Configure if hinted
145 gccversion=`$cc --version | sed 's/.*(GCC) *//`
146 fi
147 ;;
12997c75 148*) ccversion=`lslpp -L | grep 'C for AIX Compiler$' | grep -v '\.msg\.[A-Za-z_]*\.' | awk '{print $2}'`
6b356c8e 149 case "$ccversion" in
8d4151d3 150 '') ccversion=`lslpp -L | grep 'IBM C and C++ Compilers LUM$' | awk '{print $2}'`
851f49a8 151 ;;
152 *.*.*.*.*.*.*) # Ahhrgg, more than one C compiler installed
153 first_cc_path=`which ${cc:-cc}`
154 case "$first_cc_path" in
155 *vac*)
156 cc_type=vac ;;
157 /usr/bin/cc) # Check the symlink
158 if [ -h $first_cc_path ] ; then
159 ls -l $first_cc_path > reflect
160 if grep -i vac reflect >/dev/null 2>&1 ; then
161 cc_type=vac
162 fi
163 rm -f reflect
164 fi
165 ;;
166 esac
167 ccversion=`lslpp -L | grep 'C for AIX Compiler$' | grep -i $cc_type | awk '{print $2}' | head -1`
168 ;;
8d4151d3 169 esac
170 case "$ccversion" in
171 3.6.6.0)
172 optimize='none'
173 ;;
6b356c8e 174 4.4.0.0|4.4.0.1|4.4.0.2)
b7a20417 175 cat >&4 <<EOF
176***
177*** This C compiler ($ccversion) is outdated.
178***
179*** Please upgrade to at least 4.4.0.3.
180***
181EOF
182 ;;
2973cfbe 183 5.0.0.0)
184 cat >&4 <<EOF
185***
201c2286 186*** This C compiler ($ccversion) is known to have too many optimizer
187*** bugs to compile a working Perl.
2973cfbe 188***
201c2286 189*** Consider upgrading your C compiler, or getting the GNU cc (gcc).
2973cfbe 190***
201c2286 191*** Cannot continue, aborting.
2973cfbe 192EOF
201c2286 193 exit 1
2973cfbe 194 ;;
72f70c99 195 5.0.1.0)
b7a20417 196 cat >&4 <<EOF
197***
198*** This C compiler ($ccversion) is known to have optimizer problems
199*** when compiling regcomp.c.
200***
201*** Disabling optimization for that file but consider upgrading
202*** your C compiler.
203***
204EOF
205regcomp_cflags='optimize='
6b356c8e 206 ;;
207 esac
4633a7c4 208esac
5f9d9a17 209# the required -bE:$installarchlib/CORE/perl.exp is added by
210# libperl.U (Configure) later.
a0d0e21e 211
5cf1d1f1 212case "$ldlibpthname" in
213'') ldlibpthname=LIBPATH ;;
214esac
215
a0d0e21e 216# The first 3 options would not be needed if dynamic libs. could be linked
217# with the compiler instead of ld.
42793c05 218# -bI:$(PERL_INC)/perl.exp Read the exported symbols from the perl binary
4e774c84 219# -bE:$(BASEEXT).exp Export these symbols. This file contains only one
220# symbol: boot_$(EXP) can it be auto-generated?
c07a80fd 221case "$osvers" in
2223*)
6c79d5f6 223 lddlflags="$lddlflags -H512 -T512 -bhalt:4 -bM:SRE -bI:\$(PERL_INC)/perl.exp -bE:\$(BASEEXT).exp -e _nostart -lc"
c07a80fd 224 ;;
225*)
39816196 226 lddlflags="$lddlflags -bhalt:4 -bM:SRE -bI:\$(PERL_INC)/perl.exp -bE:\$(BASEEXT).exp -bnoentry -lc"
b691c02f 227 ;;
c07a80fd 228esac
3427abbf 229# AIX 4.2 (using latest patchlevels on 20001130) has a broken bind
230# library (getprotobyname and getprotobynumber are outversioned by
231# the same calls in libc, at least for xlc version 3...
232case "`oslevel`" in
765adc1d 233 4.2.1.*)
3427abbf 234 case "$ccversion" in # Don't know if needed for gcc
851f49a8 235 3.1.4.*|5.0.2.*) # libswanted "bind ... c ..." => "... c bind ..."
3427abbf 236 set `echo X "$libswanted "| sed -e 's/ bind\( .*\) \([cC]\) / \1 \2 bind /'`
237 shift
238 libswanted="$*"
239 ;;
240 esac
241 ;;
242 esac
52e1cb5e 243
104d25b7 244# This script UU/usethreads.cbu will get 'called-back' by Configure
245# after it has prompted the user for whether to use threads.
246cat > UU/usethreads.cbu <<'EOCBU'
247case "$usethreads" in
248$define|true|[yY]*)
4e774c84 249 ccflags="$ccflags -DNEED_PTHREAD_INIT"
250 case "$cc" in
86c089c6 251 *gcc*)
252echo "GCC $gccversion disabling some _r functions" >&4
253 case "$gccversion" in
254 3*) d_drand48_r='undef'
255 d_endgrent_r='undef'
256 d_endpwent_r='undef'
257 d_getgrent_r='undef'
258 d_getpwent_r='undef'
259 d_random_r='undef'
260 d_srand48_r='undef'
261 d_strerror_r='undef'
262 ;;
263 esac
264 ;;
4e774c84 265 cc_r) ;;
266 cc|xl[cC]_r)
bbc711f9 267 echo >&4 "Switching cc to cc_r because of POSIX threads."
268 # xlc_r has been known to produce buggy code in AIX 4.3.2.
4e774c84 269 # (e.g. pragma/overload core dumps) Let's suspect xlC_r, too.
bbc711f9 270 # --jhi@iki.fi
271 cc=cc_r
12c96c39 272
86c089c6 273 case "`oslevel`" in
274 4.2.1.*) i_crypt='undef' ;;
275 esac
4e774c84 276 ;;
277 '')
bbc711f9 278 cc=cc_r
4e774c84 279 ;;
280 *)
281 cat >&4 <<EOM
6b356c8e 282*** For pthreads you should use the AIX C compiler cc_r.
283*** (now your compiler was set to '$cc')
284*** Cannot continue, aborting.
104d25b7 285EOM
4e774c84 286 exit 1
104d25b7 287 ;;
4e774c84 288 esac
289
c88be79f 290 # c_rify libswanted.
291 set `echo X "$libswanted "| sed -e 's/ \([cC]\) / \1_r /g'`
292 shift
293 libswanted="$*"
294 # c_rify lddlflags.
295 set `echo X "$lddlflags "| sed -e 's/ \(-l[cC]\) / \1_r /g'`
296 shift
297 lddlflags="$*"
298
299 # Insert pthreads to libswanted, before any libc or libC.
db512b97 300 set `echo X "$libswanted "| sed -e 's/ \([cC]_r\) / pthreads \1 /'`
c88be79f 301 shift
302 libswanted="$*"
303 # Insert pthreads to lddlflags, before any libc or libC.
db512b97 304 set `echo X "$lddlflags " | sed -e 's/ \(-l[cC]_r\) / -lpthreads \1 /'`
c88be79f 305 shift
306 lddlflags="$*"
307
104d25b7 308 ;;
309esac
310EOCBU
fa9667c9 311
8a647129 312# This script UU/uselargefiles.cbu will get 'called-back' by Configure
bd9b35c9 313# after it has prompted the user for whether to use large files.
8a647129 314cat > UU/uselargefiles.cbu <<'EOCBU'
bd9b35c9 315case "$uselargefiles" in
10cc9d2a 316''|$define|true|[yY]*)
21c7e20c 317 # Configure should take care of use64bitint and use64bitall being
318 # defined before uselargefiles.cbu is consulted.
319 if test X"$use64bitint:$quadtype" = X"$define:long" -o X"$use64bitall" = Xdefine; then
320# Keep these at the left margin.
321ccflags_uselargefiles="`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
322ldflags_uselargefiles="`getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
323 else
9422c00b 324# Keep these at the left margin.
45c9e83b 325ccflags_uselargefiles="`getconf XBS5_ILP32_OFFBIG_CFLAGS 2>/dev/null`"
326ldflags_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LDFLAGS 2>/dev/null`"
21c7e20c 327 fi
6b8eaf93 328 # _Somehow_ in AIX 4.3.1.0 the above getconf call manages to
329 # insert(?) *something* to $ldflags so that later (in Configure) evaluating
330 # $ldflags causes a newline after the '-b64' (the result of the getconf).
331 # (nothing strange shows up in $ldflags even in hexdump;
d553adec 332 # so it may be something (a bug) in the shell, instead?)
6b8eaf93 333 # Try it out: just uncomment the below line and rerun Configure:
45c9e83b 334# echo >&4 "AIX 4.3.1.0 $ldflags_uselargefiles mystery" ; exit 1
6b8eaf93 335 # Just don't ask me how AIX does it, I spent hours wondering.
45c9e83b 336 # Therefore the line re-evaluating ldflags_uselargefiles: it seems to fix
6b8eaf93 337 # the whatever it was that AIX managed to break. --jhi
45c9e83b 338 ldflags_uselargefiles="`echo $ldflags_uselargefiles`"
21c7e20c 339 if test X"$use64bitint:$quadtype" = X"$define:long" -o X"$use64bitall" = Xdefine; then
340# Keep this at the left margin.
341libswanted_uselargefiles="`getconf XBS5_LP64_OFF64_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
342 else
9422c00b 343# Keep this at the left margin.
45c9e83b 344libswanted_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
21c7e20c 345 fi
45c9e83b 346 case "$ccflags_uselargefiles$ldflags_uselargefiles$libs_uselargefiles" in
bd9b35c9 347 '');;
45c9e83b 348 *) ccflags="$ccflags $ccflags_uselargefiles"
349 ldflags="$ldflags $ldflags_uselargefiles"
350 libswanted="$libswanted $libswanted_uselargefiles"
bd9b35c9 351 ;;
352 esac
d553adec 353 case "$gccversion" in
354 '') ;;
a2147dfe 355 *) # Remove xlc-spefific -qflags.
356 ccflags="`echo $ccflags | sed -e 's@ -q[^ ]*@ @g' -e 's@^-q[^ ]* @@g'`"
357 ldflags="`echo $ldflags | sed -e 's@ -q[^ ]*@ @g' -e 's@^-q[^ ]* @@g'`"
358 # Move xld-spefific -bflags.
359 ccflags="`echo $ccflags | sed -e 's@ -b@ -Wl,-b@g'`"
360 ldflags="`echo ' '$ldflags | sed -e 's@ -b@ -Wl,-b@g'`"
361 lddlflags="`echo ' '$lddlflags | sed -e 's@ -b@ -Wl,-b@g'`"
362 ld='gcc'
363 echo >&4 "(using ccflags $ccflags)"
364 echo >&4 "(using ldflags $ldflags)"
365 echo >&4 "(using lddlflags $lddlflags)"
366 ;;
d553adec 367 esac
368 ;;
bd9b35c9 369esac
370EOCBU
6b8eaf93 371
10cc9d2a 372# This script UU/use64bitint.cbu will get 'called-back' by Configure
de6124c8 373# after it has prompted the user for whether to use 64 bit integers.
10cc9d2a 374cat > UU/use64bitint.cbu <<'EOCBU'
375case "$use64bitint" in
efeaa891 376$define|true|[yY]*)
2d4389e4 377 case "`oslevel`" in
efeaa891 378 3.*|4.[012].*)
379 cat >&4 <<EOM
2d4389e4 380AIX `oslevel` does not support 64-bit interfaces.
19e194ad 381You should upgrade to at least AIX 4.3.
efeaa891 382EOM
383 exit 1
384 ;;
385 esac
19e194ad 386 ;;
387esac
388EOCBU
389
19e194ad 390cat > UU/use64bitall.cbu <<'EOCBU'
de6124c8 391# This script UU/use64bitall.cbu will get 'called-back' by Configure
392# after it has prompted the user for whether to be maximally 64-bitty.
19e194ad 393case "$use64bitall" in
394$define|true|[yY]*)
395 case "`oslevel`" in
396 3.*|4.[012].*)
397 cat >&4 <<EOM
398AIX `oslevel` does not support 64-bit interfaces.
399You should upgrade to at least AIX 4.3.
400EOM
401 exit 1
402 ;;
403 esac
404 echo " "
405 echo "Checking the CPU width of your hardware..." >&4
406 $cat >size.c <<EOCP
407#include <stdio.h>
408#include <sys/systemcfg.h>
409int main (void)
410{
411 printf("%d\n",_system_configuration.width);
412 return(0);
413}
414EOCP
415 set size
416 if eval $compile_ok; then
9422c00b 417 qacpuwidth=`./size`
418 echo "You are running on $qacpuwidth bit hardware."
19e194ad 419 else
420 dflt="32"
421 echo " "
422 echo "(I can't seem to compile the test program. Guessing...)"
423 rp="What is the width of your CPU (in bits)?"
424 . ./myread
9422c00b 425 qacpuwidth="$ans"
19e194ad 426 fi
427 $rm -f size.c size
9422c00b 428 case "$qacpuwidth" in
19e194ad 429 32*)
430 cat >&4 <<EOM
431Bzzzt! At present, you can only perform a
432full 64-bit build on a 64-bit machine.
433EOM
434 exit 1
435 ;;
436 esac
9422c00b 437 qacflags="`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
438 qaldflags="`getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
19e194ad 439 # See jhi's comments above regarding this re-eval. I've
440 # seen similar weirdness in the form of:
441 #
442# 1506-173 (W) Option lm is not valid. Enter xlc for list of valid options.
443 #
444 # error messages from 'cc -E' invocation. Again, the offending
445 # string is simply not detectable by any means. Since it doesn't
446 # do any harm, I didn't pursue it. -- sh
9422c00b 447 qaldflags="`echo $qaldflags`"
448 qalibs="`getconf XBS5_LP64_OFF64_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
8a647129 449 # -q32 and -b32 may have been set by uselargefiles or user.
450 # Remove them.
19e194ad 451 ccflags="`echo $ccflags | sed -e 's@-q32@@'`"
452 ldflags="`echo $ldflags | sed -e 's@-b32@@'`"
453 # Tell archiver to use large format. Unless we remove 'ar'
454 # from 'trylist', the Configure script will just reset it to 'ar'
455 # immediately prior to writing config.sh. This took me hours
456 # to figure out.
bab3591f 457 trylist="`echo $trylist | sed -e 's@^ar @@' -e 's@ ar @ @g' -e 's@ ar$@@'`"
19e194ad 458 ar="ar -X64"
459 nm_opt="-X64 $nm_opt"
9422c00b 460 # Note: Placing the 'qacflags' variable into the 'ldflags' string
3a7209f1 461 # is NOT a typo. ldflags is passed to the C compiler for final
19e194ad 462 # linking, and it wants -q64 (-b64 is for ld only!).
9422c00b 463 case "$qacflags$qaldflags$qalibs" in
19e194ad 464 '');;
9422c00b 465 *) ccflags="$ccflags $qacflags"
466 ldflags="$ldflags $qacflags"
3a7209f1 467 lddlflags="$qaldflags $lddlflags"
9422c00b 468 libswanted="$libswanted $qalibs"
19e194ad 469 ;;
470 esac
471 case "$ccflags" in
472 *-DUSE_64_BIT_ALL*) ;;
473 *) ccflags="$ccflags -DUSE_64_BIT_ALL";;
474 esac
475 case "$archname64" in
476 ''|64*) archname64=64all ;;
477 esac
478 longsize="8"
9422c00b 479 qacflags=''
480 qaldflags=''
481 qalibs=''
482 qacpuwidth=''
efeaa891 483 ;;
484esac
485EOCBU
5b877257 486
61d42ce4 487if test $usenativedlopen = 'true'
488then
fd90a50d 489 ccflags="$ccflags -DUSE_NATIVE_DLOPEN"
490 case "$cc" in
491 *gcc*) ldflags="$ldflags -Wl,-brtl" ;;
492 *) ldflags="$ldflags -brtl" ;;
493 esac
61d42ce4 494else
9d20a131 495 case `oslevel` in
496 4.2.*) ;; # libC_r has broke gettimeofday
497 *) # If the C++ libraries, libC and libC_r, are available we will
498 # prefer them over the vanilla libc, because the libC contain
499 # loadAndInit() and terminateAndUnload() which work correctly
500 # with C++ statics while libc load() and unload() do not. See
501 # ext/DynaLoader/dl_aix.xs. The C-to-C_r switch is done by
502 # usethreads.cbu, if needed.
503 if test -f /lib/libC.a -a X"`$cc -v 2>&1 | grep gcc`" = X; then
504 # Cify libswanted.
505 set `echo X "$libswanted "| sed -e 's/ c / C c /'`
506 shift
507 libswanted="$*"
508 # Cify lddlflags.
509 set `echo X "$lddlflags "| sed -e 's/ -lc / -lC -lc /'`
510 shift
511 lddlflags="$*"
512 fi
513 esac
c88be79f 514fi
4e774c84 515
5b877257 516# EOF