3 # Split off from aix.sh on 04 Feb 2004 by H.Merijn Brand
5 # AIX 4.1 hints thanks to Christopher Chan-Nui <channui@austin.ibm.com>.
6 # AIX 4.1 pthreading by Christopher Chan-Nui <channui@austin.ibm.com> and
7 # Jarkko Hietaniemi <jhi@iki.fi>.
8 # AIX 4.3.x LP64 build by Steven Hirsch <hirschs@btv.ibm.com>
9 # Merged on Mon Feb 6 10:22:35 EST 1995 by
10 # Andy Dougherty <doughera@lafayette.edu>
12 # Contact dfavor@corridor.com for any of the following:
14 # - AIX 43x and above support
15 # - gcc + threads support
20 # - use nm in AIX 43x and above
21 # - gcc + threads now builds
22 # [(added support for socks) Jul 99 SOCKS support rewritten]
26 # - shared libperl support is tricky. if ever libperl.a ends up
27 # in /usr/local/lib/* it can override any subsequent builds of
28 # that same perl release. to make sure you know where the shared
29 # libperl.a is coming from do a 'dump -Hv perl' and check all the
30 # library search paths in the loader header.
32 # it would be nice to warn the user if a libperl.a exists that is
33 # going to override the current build, but that would be complex.
35 # better yet, a solid fix for this situation should be developed.
38 # Configure finds setrgid and setruid, but they're useless. The man
40 # setrgid: The EPERM error code is always returned.
41 # setruid: The EPERM error code is always returned. Processes cannot
42 # reset only their real user IDs.
48 case "$usemymalloc" in
49 '') usemymalloc='n' ;;
52 # Intuiting the existence of system calls under AIX is difficult,
53 # at best; the safest technique is to find them empirically.
55 # AIX 4.3.* and above default to letting Configure test if nm
56 # extraction will work.
62 case "$usenativedlopen" in
63 '') usenativedlopen='false' ;;
67 case "$usenativedlopen" in
68 '') usenativedlopen='true' ;;
74 # AIX itself uses .o (libc.o) but we prefer compatibility
75 # with the rest of the world and with rest of the scripting
76 # languages (Tcl, Python) and related systems (SWIG).
77 # Stephanie Beals <bealzy@us.ibm.com>
80 # Take possible hint from the environment. If 32-bit is set in the
81 # environment, we can override it later. If set for 64, the
82 # 'sizeof' test sees a native 64-bit architecture and never looks back.
83 case "$OBJECT_MODE" in
87 You have OBJECT_MODE=32 set in the environment.
88 I take this as a hint you do not want to
89 build for a 64-bit address space. You will be
90 given the opportunity to change this later.
96 You have OBJECT_MODE=64 set in the environment.
97 This forces a full 64-bit build. If that is
98 not what you intended, please terminate this
99 program, unset it and restart.
105 # uname -m output is too specific and not appropriate here
107 '') archname="$osname" ;;
111 ccflags="$ccflags -D_ALL_SOURCE -D_ANSI_C_SOURCE -D_POSIX_SOURCE"
114 *) ccflags="$ccflags -qmaxmem=-1 -qnoansialias" ;;
117 # since change #28654, _XOPEN_SOURCE symbol needs to be defined on aix 4.2
118 # to avoid the following build error in perlio.c :
119 # 1506-294 (S) Syntax error in expression on #if directive.
123 ccflags="$ccflags -D_XOPEN_SOURCE"
124 # aix 4.2 does not have IPv6 support
131 # These functions don't work like Perl expects them to.
135 # Changes for dynamic linking by Wayne Scott <wscott@ichips.intel.com>
137 # Tell perl which symbols to export for dynamic linking.
138 cccdlflags='none' # All AIX code is position independent
139 cc_type=xlc # do not export to config.sh
144 if [ "X$gccversion" = "X" ]; then
145 # Done too late in Configure if hinted
146 gccversion=`$cc -dumpversion`
150 *) ccversion=`lslpp -L | grep 'C for AIX Compiler$' | grep -v '\.msg\.[A-Za-z_]*\.' | head -1 | awk '{print $1,$2}'`
152 '') ccversion=`lslpp -L | grep 'IBM C and C++ Compilers LUM$'`
155 *.*.*.*.*.*.*) # Ahhrgg, more than one C compiler installed
156 first_cc_path=`which ${cc:-cc}`
157 case "$first_cc_path" in
160 /usr/bin/cc) # Check the symlink
161 if [ -h $first_cc_path ] ; then
162 ls -l $first_cc_path > reflect
163 if grep -i vac reflect >/dev/null 2>&1 ; then
170 ccversion=`lslpp -L | grep 'C for AIX Compiler$' | grep -i $cc_type | head -1`
177 ccversion=`echo "$ccversion" | awk '{print $2}'`
184 4.4.0.0|4.4.0.1|4.4.0.2)
187 *** This C compiler ($ccversion) is outdated.
189 *** Please upgrade to at least 4.4.0.3.
197 *** This C compiler ($ccversion) is known to have too many optimizer
198 *** bugs to compile a working Perl.
200 *** Consider upgrading your C compiler, or getting the GNU cc (gcc).
202 *** Cannot continue, aborting.
210 *** This C compiler ($ccversion) is known to have optimizer problems
211 *** when compiling regcomp.c.
213 *** Disabling optimization for that file but consider upgrading
217 regcomp_cflags='optimize='
221 5*) usemallocwrap='n' ;; # causes panic in miniperl
224 # the required -bE:$installarchlib/CORE/perl.exp is added by
225 # libperl.U (Configure) later.
227 # The first 3 options would not be needed if dynamic libs. could be linked
228 # with the compiler instead of ld.
229 # -bI:$(PERL_INC)/perl.exp Read the exported symbols from the perl binary
230 # -bE:$(BASEEXT).exp Export these symbols. This file contains only one
231 # symbol: boot_$(EXP) can it be auto-generated?
232 if test $usenativedlopen = 'true' ; then
233 lddlflags="$lddlflags -bhalt:4 -bexpall -G -bnoentry -lc"
235 lddlflags="$lddlflags -bhalt:4 -bM:SRE -bI:\$(PERL_INC)/perl.exp -bE:\$(BASEEXT).exp -bnoentry -lc"
238 case "$use64bitall" in
239 $define|true|[yY]*) use64bitint="$define" ;;
242 case "$usemorebits" in
243 $define|true|[yY]*) use64bitint="$define"; uselongdouble="$define" ;;
248 case "$uselongdouble" in
250 ccflags="$ccflags -qlongdouble"
251 libswanted="c128 $libswanted"
252 lddlflags=`echo "$lddlflags " | sed -e 's/ -lc / -lc128 -lc /'`
259 cc*|xlc*) # cc should've been set by line 116 or so if empty.
260 if test ! -x /usr/bin/$cc -a -x /usr/vac/bin/$cc; then
263 *) if test ! -x /QOpenSys/usr/bin/$cc; then
264 # The /QOpenSys/usr/bin/$cc saves us if we are
265 # building natively in OS/400 PASE.
269 *** You either implicitly or explicitly specified an IBM C compiler,
270 *** but you do not seem to have one in /usr/bin, but you seem to have
271 *** the VAC installed in /usr/vac, but you do not have the /usr/vac/bin
272 *** in your PATH. I suggest adding that and retrying Configure.
283 case "$ldlibpthname" in
284 '') ldlibpthname=LIBPATH ;;
287 # AIX 4.2 (using latest patchlevels on 20001130) has a broken bind
288 # library (getprotobyname and getprotobynumber are outversioned by
289 # the same calls in libc, at least for xlc version 3...
292 case "$ccversion" in # Don't know if needed for gcc
293 3.1.4.*|5.0.2.*) # libswanted "bind ... c ..." => "... c bind ..."
294 set `echo X "$libswanted "| sed -e 's/ bind\( .*\) \([cC]\) / \1 \2 bind /'`
302 # This script UU/usethreads.cbu will get 'called-back' by Configure
303 # after it has prompted the user for whether to use threads.
304 cat > UU/usethreads.cbu <<'EOCBU'
305 case "$usethreads" in
318 ccflags="$ccflags -DNEED_PTHREAD_INIT"
321 ccflags="-D_THREAD_SAFE $ccflags"
325 echo >&4 "Switching cc to cc_r because of POSIX threads."
326 # xlc_r has been known to produce buggy code in AIX 4.3.2.
327 # (e.g. pragma/overload core dumps) Let's suspect xlC_r, too.
332 4.2.1.*) i_crypt='undef' ;;
340 *** For pthreads you should use the AIX C compiler cc_r.
341 *** (now your compiler was set to '$cc')
342 *** Cannot continue, aborting.
349 set `echo X "$libswanted "| sed -e 's/ \([cC]\) / \1_r /g'`
353 set `echo X "$lddlflags "| sed -e 's/ \(-l[cC]\) / \1_r /g'`
357 # Insert pthreads to libswanted, before any libc or libC.
358 set `echo X "$libswanted "| sed -e 's/ \([cC]_r\) / pthreads \1 /'`
361 # Insert pthreads to lddlflags, before any libc or libC.
362 set `echo X "$lddlflags " | sed -e 's/ \(-l[cC]_r\) / -lpthreads \1 /'`
369 # This script UU/uselargefiles.cbu will get 'called-back' by Configure
370 # after it has prompted the user for whether to use large files.
371 cat > UU/uselargefiles.cbu <<'EOCBU'
372 case "$uselargefiles" in
373 ''|$define|true|[yY]*)
374 # Configure should take care of use64bitint and use64bitall being
375 # defined before uselargefiles.cbu is consulted.
376 if test X"$use64bitint:$quadtype" = X"$define:long" -o X"$use64bitall" = Xdefine; then
377 # Keep these at the left margin.
378 ccflags_uselargefiles="`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
379 ldflags_uselargefiles="`getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
381 # Keep these at the left margin.
382 ccflags_uselargefiles="`getconf XBS5_ILP32_OFFBIG_CFLAGS 2>/dev/null`"
383 ldflags_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LDFLAGS 2>/dev/null`"
386 # _Somehow_ in AIX 4.3.1.0 the above getconf call manages to
387 # insert(?) *something* to $ldflags so that later (in Configure) evaluating
388 # $ldflags causes a newline after the '-b64' (the result of the getconf).
389 # (nothing strange shows up in $ldflags even in hexdump;
390 # so it may be something (a bug) in the shell, instead?)
391 # Try it out: just uncomment the below line and rerun Configure:
392 # echo >&4 "AIX 4.3.1.0 $ldflags_uselargefiles mystery" ; exit 1
393 # Just don't ask me how AIX does it, I spent hours wondering.
394 # Therefore the line re-evaluating ldflags_uselargefiles: it seems to fix
395 # the whatever it was that AIX managed to break. --jhi
396 ldflags_uselargefiles="`echo $ldflags_uselargefiles`"
397 if test X"$use64bitint:$quadtype" = X"$define:long" -o X"$use64bitall" = Xdefine; then
398 # Keep this at the left margin.
399 libswanted_uselargefiles="`getconf XBS5_LP64_OFF64_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g'`"
401 # Keep this at the left margin.
402 libswanted_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g'`"
405 case "$ccflags_uselargefiles$ldflags_uselargefiles$libs_uselargefiles" in
407 *) ccflags="$ccflags $ccflags_uselargefiles"
408 ldflags="$ldflags $ldflags_uselargefiles"
409 libswanted="$libswanted $libswanted_uselargefiles"
413 case "$gccversion" in
415 *) # Remove xlc-specific -qflags.
416 ccflags="`echo $ccflags | sed -e 's@ -q[^ ]*@ @g' -e 's@^-q[^ ]* @@g'`"
417 ldflags="`echo $ldflags | sed -e 's@ -q[^ ]*@ @g' -e 's@^-q[^ ]* @@g'`"
418 # Move xlc-specific -bflags.
419 ccflags="`echo $ccflags | sed -e 's@ -b@ -Wl,-b@g'`"
420 ldflags="`echo ' '$ldflags | sed -e 's@ -b@ -Wl,-b@g'`"
421 lddlflags="`echo ' '$lddlflags | sed -e 's@ -b@ -Wl,-b@g'`"
422 lddlflags="`echo ' '$lddlflags | sed -e 's@ -G @ -Wl,-G @g'`"
424 echo >&4 "(using ccflags $ccflags)"
425 echo >&4 "(using ldflags $ldflags)"
426 echo >&4 "(using lddlflags $lddlflags)"
433 # This script UU/use64bitint.cbu will get 'called-back' by Configure
434 # after it has prompted the user for whether to use 64 bit integers.
435 cat > UU/use64bitint.cbu <<'EOCBU'
436 case "$use64bitint" in
441 AIX `oslevel` does not support 64-bit interfaces.
442 You should upgrade to at least AIX 4.3.
451 cat > UU/use64bitall.cbu <<'EOCBU'
452 # This script UU/use64bitall.cbu will get 'called-back' by Configure
453 # after it has prompted the user for whether to be maximally 64-bitty.
454 case "$use64bitall" in
459 AIX `oslevel` does not support 64-bit interfaces.
460 You should upgrade to at least AIX 4.3.
466 echo "Checking the CPU width of your hardware..." >&4
469 #include <sys/systemcfg.h>
472 printf ("%d\n", _system_configuration.width);
477 if eval $compile_ok; then
479 echo "You are running on $qacpuwidth bit hardware."
483 echo "(I can't seem to compile the test program. Guessing...)"
484 rp="What is the width of your CPU (in bits)?"
489 case "$qacpuwidth" in
492 Bzzzt! At present, you can only perform a
493 full 64-bit build on a 64-bit machine.
499 qacflags="`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
500 qaldflags="`getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
501 # See jhi's comments above regarding this re-eval. I've
502 # seen similar weirdness in the form of:
504 # 1506-173 (W) Option lm is not valid. Enter xlc for list of valid options.
506 # error messages from 'cc -E' invocation. Again, the offending
507 # string is simply not detectable by any means. Since it doesn't
508 # do any harm, I didn't pursue it. -- sh
509 qaldflags="`echo $qaldflags`"
510 qalibs="`getconf XBS5_LP64_OFF64_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g'`"
511 # -q32 and -b32 may have been set by uselargefiles or user.
513 ccflags="`echo $ccflags | sed -e 's@-q32@@'`"
514 ldflags="`echo $ldflags | sed -e 's@-b32@@'`"
515 # Tell archiver to use large format. Unless we remove 'ar'
516 # from 'trylist', the Configure script will just reset it to 'ar'
517 # immediately prior to writing config.sh. This took me hours
519 trylist="`echo $trylist | sed -e 's@^ar @@' -e 's@ ar @ @g' -e 's@ ar$@@'`"
521 nm_opt="-X64 $nm_opt"
522 # Note: Placing the 'qacflags' variable into the 'ldflags' string
523 # is NOT a typo. ldflags is passed to the C compiler for final
524 # linking, and it wants -q64 (-b64 is for ld only!).
525 case "$qacflags$qaldflags$qalibs" in
527 *) ccflags="$ccflags $qacflags"
528 ldflags="$ldflags $qacflags"
529 lddlflags="$qaldflags $lddlflags"
530 libswanted="$libswanted $qalibs"
534 *-DUSE_64_BIT_ALL*) ;;
535 *) ccflags="$ccflags -DUSE_64_BIT_ALL";;
537 case "$archname64" in
538 ''|64*) archname64=64all ;;
549 if test $usenativedlopen = 'true' ; then
550 ccflags="$ccflags -DUSE_NATIVE_DLOPEN"
552 *gcc*) ldflags="$ldflags -Wl,-brtl" ;;
553 *) ldflags="$ldflags -brtl" ;;
557 4.2.*) ;; # libC_r has broke gettimeofday
558 *) # If the C++ libraries, libC and libC_r, are available we will
559 # prefer them over the vanilla libc, because the libC contain
560 # loadAndInit() and terminateAndUnload() which work correctly
561 # with C++ statics while libc load() and unload() do not. See
562 # ext/DynaLoader/dl_aix.xs. The C-to-C_r switch is done by
563 # usethreads.cbu, if needed.
564 if test -f /lib/libC.a -a X"`$cc -v 2>&1 | grep gcc`" = X; then
566 set `echo X "$libswanted "| sed -e 's/ c / C c /'`
570 set `echo X "$lddlflags "| sed -e 's/ -lc / -lC -lc /'`
580 '') prefix=/QOpenSys/perl ;;
585 *** You seem to be compiling in AIX for the OS/400 PASE environment.
586 *** I'm not going to use the AIX bind, nsl, and possible util libraries, then.
587 *** I'm also not going to install perl as /usr/bin/perl.
588 *** Perl will be installed under $prefix.
589 *** For instructions how to install this build from AIX to PASE,
590 *** see the file README.os400. Accept the "aix" for the question
591 *** about "Operating system name".
594 set `echo " $libswanted " | sed -e 's@ bind @ @' -e 's@ nsl @ @' -e 's@ util @ @'`
597 installusrbinperl="$undef"
599 # V5R1 doesn't have this (V5R2 does), without knowing
600 # which one we have it's safer to be pessimistic.
601 # Cwd will work fine even without fchdir(), but if
602 # V5R1 tries to use code compiled assuming fchdir(),
603 # lots of grief will issue forth from Cwd.
605 '') d_fchdir="$undef" ;;