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>.
4 # AIX 4.1 pthreading by Christopher Chan-Nui <channui@austin.ibm.com> and
5 # Jarkko Hietaniemi <jhi@iki.fi>.
6 # AIX 4.3.x LP64 build by Steven Hirsch <hirschs@btv.ibm.com>
7 # Merged on Mon Feb 6 10:22:35 EST 1995 by
8 # Andy Dougherty <doughera@lafayette.edu>
11 # Contact dfavor@corridor.com for any of the following:
13 # - AIX 43x and above support
14 # - gcc + threads support
19 # - use nm in AIX 43x and above
20 # - gcc + threads now builds
21 # [(added support for socks) Jul 99 SOCKS support rewritten]
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.
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.
34 # better yet, a solid fix for this situation should be developed.
37 # Configure finds setrgid and setruid, but they're useless. The man
39 # setrgid: The EPERM error code is always returned.
40 # setruid: The EPERM error code is always returned. Processes cannot
41 # reset only their real user IDs.
47 case "$usemymalloc" in
48 '') usemymalloc='n' ;;
51 # Intuiting the existence of system calls under AIX is difficult,
52 # at best; the safest technique is to find them empirically.
54 # AIX 4.3.* and above default to letting Configure test if nm
55 # extraction will work.
61 case "$usenativedlopen" in
62 '') usenativedlopen='false'
66 case "$usenativedlopen" in
67 '') usenativedlopen='true'
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>
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.
82 case "$OBJECT_MODE" in
86 You have OBJECT_MODE=32 set in the environment.
87 I take this as a hint you do not want to
88 build for a 64-bit address space. You will be
89 given the opportunity to change this later.
95 You have OBJECT_MODE=64 set in the environment.
96 This forces a full 64-bit build. If that is
97 not what you intended, please terminate this
98 program, unset it and restart.
104 # Trying to set this breaks the POSIX.c compilation
106 # Make setsockopt work correctly. See man page.
107 # ccflags='-D_BSD=44'
109 # uname -m output is too specific and not appropriate here
111 '') archname="$osname" ;;
118 ccflags="$ccflags -D_ALL_SOURCE"
120 *) # These hints at least work for 4.x, possibly other systems too.
121 ccflags="$ccflags -D_ALL_SOURCE -D_ANSI_C_SOURCE -D_POSIX_SOURCE"
124 *) ccflags="$ccflags -qmaxmem=16384 -qnoansialias" ;;
130 # These functions don't work like Perl expects them to.
134 # Changes for dynamic linking by Wayne Scott <wscott@ichips.intel.com>
136 # Tell perl which symbols to export for dynamic linking.
137 cccdlflags='none' # All AIX code is position independent
143 if [ "X$gccversion" = "X" ]; then
144 # Done too late in Configure if hinted
145 gccversion=`$cc --version | sed 's/.*(GCC) *//`
148 *) ccversion=`lslpp -L | grep 'C for AIX Compiler$' | grep -v '\.msg\.[A-Za-z_]*\.' | awk '{print $2}'`
150 '') ccversion=`lslpp -L | grep 'IBM C and C++ Compilers LUM$' | awk '{print $2}'`
152 *.*.*.*.*.*.*) # Ahhrgg, more than one C compiler installed
153 first_cc_path=`which ${cc:-cc}`
154 case "$first_cc_path" in
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
167 ccversion=`lslpp -L | grep 'C for AIX Compiler$' | grep -i $cc_type | awk '{print $2}' | head -1`
174 4.4.0.0|4.4.0.1|4.4.0.2)
177 *** This C compiler ($ccversion) is outdated.
179 *** Please upgrade to at least 4.4.0.3.
186 *** This C compiler ($ccversion) is known to have too many optimizer
187 *** bugs to compile a working Perl.
189 *** Consider upgrading your C compiler, or getting the GNU cc (gcc).
191 *** Cannot continue, aborting.
198 *** This C compiler ($ccversion) is known to have optimizer problems
199 *** when compiling regcomp.c.
201 *** Disabling optimization for that file but consider upgrading
205 regcomp_cflags='optimize='
209 # the required -bE:$installarchlib/CORE/perl.exp is added by
210 # libperl.U (Configure) later.
214 cc*|xlc*) # cc should've been set by line 116 or so if empty.
215 if test ! -x /usr/bin/$cc -a -x /usr/vac/bin/$cc; then
218 *) if test ! -x /QOpenSys/usr/bin/$cc; then
219 # The /QOpenSys/usr/bin/$cc saves us if we are
220 # building natively in OS/400 PASE.
224 *** You either implicitly or explicitly specified an IBM C compiler,
225 *** but you do not seem to have one in /usr/bin, but you seem to have
226 *** the VAC installed in /usr/vac, but you do not have the /usr/vac/bin
227 *** in your PATH. I suggest adding that and retrying Configure.
238 case "$ldlibpthname" in
239 '') ldlibpthname=LIBPATH ;;
242 # The first 3 options would not be needed if dynamic libs. could be linked
243 # with the compiler instead of ld.
244 # -bI:$(PERL_INC)/perl.exp Read the exported symbols from the perl binary
245 # -bE:$(BASEEXT).exp Export these symbols. This file contains only one
246 # symbol: boot_$(EXP) can it be auto-generated?
249 lddlflags="$lddlflags -H512 -T512 -bhalt:4 -bM:SRE -bI:\$(PERL_INC)/perl.exp -bE:\$(BASEEXT).exp -e _nostart -lc"
252 lddlflags="$lddlflags -bhalt:4 -bM:SRE -bI:\$(PERL_INC)/perl.exp -bE:\$(BASEEXT).exp -bnoentry -lc"
255 # AIX 4.2 (using latest patchlevels on 20001130) has a broken bind
256 # library (getprotobyname and getprotobynumber are outversioned by
257 # the same calls in libc, at least for xlc version 3...
260 case "$ccversion" in # Don't know if needed for gcc
261 3.1.4.*|5.0.2.*) # libswanted "bind ... c ..." => "... c bind ..."
262 set `echo X "$libswanted "| sed -e 's/ bind\( .*\) \([cC]\) / \1 \2 bind /'`
270 # This script UU/usethreads.cbu will get 'called-back' by Configure
271 # after it has prompted the user for whether to use threads.
272 cat > UU/usethreads.cbu <<'EOCBU'
273 case "$usethreads" in
275 ccflags="$ccflags -DNEED_PTHREAD_INIT"
278 ccflags="-D_THREAD_SAFE $ccflags"
279 echo "GCC $gccversion disabling some _r functions" >&4
280 case "$gccversion" in
281 3*) d_drand48_r='undef'
294 echo >&4 "Switching cc to cc_r because of POSIX threads."
295 # xlc_r has been known to produce buggy code in AIX 4.3.2.
296 # (e.g. pragma/overload core dumps) Let's suspect xlC_r, too.
301 4.2.1.*) i_crypt='undef' ;;
309 *** For pthreads you should use the AIX C compiler cc_r.
310 *** (now your compiler was set to '$cc')
311 *** Cannot continue, aborting.
318 set `echo X "$libswanted "| sed -e 's/ \([cC]\) / \1_r /g'`
322 set `echo X "$lddlflags "| sed -e 's/ \(-l[cC]\) / \1_r /g'`
326 # Insert pthreads to libswanted, before any libc or libC.
327 set `echo X "$libswanted "| sed -e 's/ \([cC]_r\) / pthreads \1 /'`
330 # Insert pthreads to lddlflags, before any libc or libC.
331 set `echo X "$lddlflags " | sed -e 's/ \(-l[cC]_r\) / -lpthreads \1 /'`
339 # This script UU/uselargefiles.cbu will get 'called-back' by Configure
340 # after it has prompted the user for whether to use large files.
341 cat > UU/uselargefiles.cbu <<'EOCBU'
342 case "$uselargefiles" in
343 ''|$define|true|[yY]*)
344 # Configure should take care of use64bitint and use64bitall being
345 # defined before uselargefiles.cbu is consulted.
346 if test X"$use64bitint:$quadtype" = X"$define:long" -o X"$use64bitall" = Xdefine; then
347 # Keep these at the left margin.
348 ccflags_uselargefiles="`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
349 ldflags_uselargefiles="`getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
351 # Keep these at the left margin.
352 ccflags_uselargefiles="`getconf XBS5_ILP32_OFFBIG_CFLAGS 2>/dev/null`"
353 ldflags_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LDFLAGS 2>/dev/null`"
355 # _Somehow_ in AIX 4.3.1.0 the above getconf call manages to
356 # insert(?) *something* to $ldflags so that later (in Configure) evaluating
357 # $ldflags causes a newline after the '-b64' (the result of the getconf).
358 # (nothing strange shows up in $ldflags even in hexdump;
359 # so it may be something (a bug) in the shell, instead?)
360 # Try it out: just uncomment the below line and rerun Configure:
361 # echo >&4 "AIX 4.3.1.0 $ldflags_uselargefiles mystery" ; exit 1
362 # Just don't ask me how AIX does it, I spent hours wondering.
363 # Therefore the line re-evaluating ldflags_uselargefiles: it seems to fix
364 # the whatever it was that AIX managed to break. --jhi
365 ldflags_uselargefiles="`echo $ldflags_uselargefiles`"
366 if test X"$use64bitint:$quadtype" = X"$define:long" -o X"$use64bitall" = Xdefine; then
367 # Keep this at the left margin.
368 libswanted_uselargefiles="`getconf XBS5_LP64_OFF64_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
370 # Keep this at the left margin.
371 libswanted_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
373 case "$ccflags_uselargefiles$ldflags_uselargefiles$libs_uselargefiles" in
375 *) ccflags="$ccflags $ccflags_uselargefiles"
376 ldflags="$ldflags $ldflags_uselargefiles"
377 libswanted="$libswanted $libswanted_uselargefiles"
380 case "$gccversion" in
382 *) # Remove xlc-spefific -qflags.
383 ccflags="`echo $ccflags | sed -e 's@ -q[^ ]*@ @g' -e 's@^-q[^ ]* @@g'`"
384 ldflags="`echo $ldflags | sed -e 's@ -q[^ ]*@ @g' -e 's@^-q[^ ]* @@g'`"
385 # Move xld-spefific -bflags.
386 ccflags="`echo $ccflags | sed -e 's@ -b@ -Wl,-b@g'`"
387 ldflags="`echo ' '$ldflags | sed -e 's@ -b@ -Wl,-b@g'`"
388 lddlflags="`echo ' '$lddlflags | sed -e 's@ -b@ -Wl,-b@g'`"
390 echo >&4 "(using ccflags $ccflags)"
391 echo >&4 "(using ldflags $ldflags)"
392 echo >&4 "(using lddlflags $lddlflags)"
399 # This script UU/use64bitint.cbu will get 'called-back' by Configure
400 # after it has prompted the user for whether to use 64 bit integers.
401 cat > UU/use64bitint.cbu <<'EOCBU'
402 case "$use64bitint" in
407 AIX `oslevel` does not support 64-bit interfaces.
408 You should upgrade to at least AIX 4.3.
417 cat > UU/use64bitall.cbu <<'EOCBU'
418 # This script UU/use64bitall.cbu will get 'called-back' by Configure
419 # after it has prompted the user for whether to be maximally 64-bitty.
420 case "$use64bitall" in
425 AIX `oslevel` does not support 64-bit interfaces.
426 You should upgrade to at least AIX 4.3.
432 echo "Checking the CPU width of your hardware..." >&4
435 #include <sys/systemcfg.h>
438 printf("%d\n",_system_configuration.width);
443 if eval $compile_ok; then
445 echo "You are running on $qacpuwidth bit hardware."
449 echo "(I can't seem to compile the test program. Guessing...)"
450 rp="What is the width of your CPU (in bits)?"
455 case "$qacpuwidth" in
458 Bzzzt! At present, you can only perform a
459 full 64-bit build on a 64-bit machine.
464 qacflags="`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
465 qaldflags="`getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
466 # See jhi's comments above regarding this re-eval. I've
467 # seen similar weirdness in the form of:
469 # 1506-173 (W) Option lm is not valid. Enter xlc for list of valid options.
471 # error messages from 'cc -E' invocation. Again, the offending
472 # string is simply not detectable by any means. Since it doesn't
473 # do any harm, I didn't pursue it. -- sh
474 qaldflags="`echo $qaldflags`"
475 qalibs="`getconf XBS5_LP64_OFF64_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
476 # -q32 and -b32 may have been set by uselargefiles or user.
478 ccflags="`echo $ccflags | sed -e 's@-q32@@'`"
479 ldflags="`echo $ldflags | sed -e 's@-b32@@'`"
480 # Tell archiver to use large format. Unless we remove 'ar'
481 # from 'trylist', the Configure script will just reset it to 'ar'
482 # immediately prior to writing config.sh. This took me hours
484 trylist="`echo $trylist | sed -e 's@^ar @@' -e 's@ ar @ @g' -e 's@ ar$@@'`"
486 nm_opt="-X64 $nm_opt"
487 # Note: Placing the 'qacflags' variable into the 'ldflags' string
488 # is NOT a typo. ldflags is passed to the C compiler for final
489 # linking, and it wants -q64 (-b64 is for ld only!).
490 case "$qacflags$qaldflags$qalibs" in
492 *) ccflags="$ccflags $qacflags"
493 ldflags="$ldflags $qacflags"
494 lddlflags="$qaldflags $lddlflags"
495 libswanted="$libswanted $qalibs"
499 *-DUSE_64_BIT_ALL*) ;;
500 *) ccflags="$ccflags -DUSE_64_BIT_ALL";;
502 case "$archname64" in
503 ''|64*) archname64=64all ;;
514 if test $usenativedlopen = 'true'
516 ccflags="$ccflags -DUSE_NATIVE_DLOPEN"
518 *gcc*) ldflags="$ldflags -Wl,-brtl" ;;
519 *) ldflags="$ldflags -brtl" ;;
523 4.2.*) ;; # libC_r has broke gettimeofday
524 *) # If the C++ libraries, libC and libC_r, are available we will
525 # prefer them over the vanilla libc, because the libC contain
526 # loadAndInit() and terminateAndUnload() which work correctly
527 # with C++ statics while libc load() and unload() do not. See
528 # ext/DynaLoader/dl_aix.xs. The C-to-C_r switch is done by
529 # usethreads.cbu, if needed.
530 if test -f /lib/libC.a -a X"`$cc -v 2>&1 | grep gcc`" = X; then
532 set `echo X "$libswanted "| sed -e 's/ c / C c /'`
536 set `echo X "$lddlflags "| sed -e 's/ -lc / -lC -lc /'`
546 '') prefix=/QOpenSys/perl ;;
551 *** You seem to be compiling in AIX for the OS/400 PASE environment.
552 *** I'm not going to use the AIX bind, nsl, and possible util libraries, then.
553 *** I'm also not going to install perl as /usr/bin/perl.
554 *** Perl will be installed under $prefix.
555 *** For instructions how to install this build from AIX to PASE,
556 *** see the file README.os400. Accept the "aix" for the question
557 *** about "Operating system name".
560 set `echo " $libswanted " | sed -e 's@ bind @ @' -e 's@ nsl @ @' -e 's@ util @ @'`
563 installusrbinperl="$undef"
565 # V5R1 doesn't have this (V5R2 does), without knowing
566 # which one we have it's safer to be pessimistic.
567 # Cwd will work fine even without fchdir(), but if
568 # V5R1 tries to use code compiled assuming fchdir(),
569 # lots of grief will issue forth from Cwd.
571 '') d_fchdir="$undef" ;;