Fix of sorts for bug id 20000901.092. There seems to be no trace
[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
56 3.*|4.1.*|4.2.*)
57 usenm='undef'
58 ;;
59 *)
60 usenm='true'
61 ;;
62esac
cc628cc3 63
3c321fdc 64so="a"
0d9ec2f4 65# AIX itself uses .o (libc.o) but we prefer compatibility
66# with the rest of the world and with rest of the scripting
67# languages (Tcl, Python) and related systems (SWIG).
68# Stephanie Beals <bealzy@us.ibm.com>
69dlext="so"
3c321fdc 70
19e194ad 71# Take possible hint from the environment. If 32-bit is set in the
72# environment, we can override it later. If set for 64, the
73# 'sizeof' test sees a native 64-bit architecture and never looks back.
74case "$OBJECT_MODE" in
7532)
76 cat >&4 <<EOF
77
78You have OBJECT_MODE=32 set in the environment.
79I take this as a hint you do not want to
80build for a 64-bit address space. You will be
81given the opportunity to change this later.
82EOF
83 ;;
8464)
85 cat >&4 <<EOF
86
87You have OBJECT_MODE=64 set in the environment.
88This forces a full 64-bit build. If that is
89not what you intended, please terminate this
90program, unset it and restart.
91EOF
92 ;;
93*) ;;
94esac
95
bbc711f9 96# Trying to set this breaks the POSIX.c compilation
97
1aef975c 98# Make setsockopt work correctly. See man page.
99# ccflags='-D_BSD=44'
100
101# uname -m output is too specific and not appropriate here
102case "$archname" in
103'') archname="$osname" ;;
104esac
105
bd9b35c9 106cc=${cc:-cc}
107
1aef975c 108case "$osvers" in
1093*) d_fchmod=undef
fc2c2f48 110 ccflags="$ccflags -D_ALL_SOURCE"
1aef975c 111 ;;
112*) # These hints at least work for 4.x, possibly other systems too.
fc2c2f48 113 ccflags="$ccflags -D_ALL_SOURCE -D_ANSI_C_SOURCE -D_POSIX_SOURCE"
80589958 114 case "$cc" in
115 *gcc*) ;;
86959918 116 *) ccflags="$ccflags -qmaxmem=16384" ;;
80589958 117 esac
1aef975c 118 nm_opt='-B'
1aef975c 119 ;;
120esac
121
bbc711f9 122# These functions don't work like Perl expects them to.
123d_setregid='undef'
124d_setreuid='undef'
125
1aef975c 126# Changes for dynamic linking by Wayne Scott <wscott@ichips.intel.com>
a0d0e21e 127#
128# Tell perl which symbols to export for dynamic linking.
4633a7c4 129case "$cc" in
5f9d9a17 130*gcc*) ccdlflags='-Xlinker' ;;
6b356c8e 131*) ccversion=`lslpp -L | grep 'C for AIX Compiler$' | awk '{print $2}'`
132 case "$ccversion" in
133 4.4.0.0|4.4.0.1|4.4.0.2)
134 echo >&4 "*** This C compiler ($ccversion) is outdated."
135 echo >&4 "*** Please upgrade to at least 4.4.0.3."
136 ;;
137 esac
4633a7c4 138esac
5f9d9a17 139# the required -bE:$installarchlib/CORE/perl.exp is added by
140# libperl.U (Configure) later.
a0d0e21e 141
5cf1d1f1 142case "$ldlibpthname" in
143'') ldlibpthname=LIBPATH ;;
144esac
145
a0d0e21e 146# The first 3 options would not be needed if dynamic libs. could be linked
147# with the compiler instead of ld.
42793c05 148# -bI:$(PERL_INC)/perl.exp Read the exported symbols from the perl binary
4e774c84 149# -bE:$(BASEEXT).exp Export these symbols. This file contains only one
150# symbol: boot_$(EXP) can it be auto-generated?
c07a80fd 151case "$osvers" in
1523*)
6c79d5f6 153 lddlflags="$lddlflags -H512 -T512 -bhalt:4 -bM:SRE -bI:\$(PERL_INC)/perl.exp -bE:\$(BASEEXT).exp -e _nostart -lc"
c07a80fd 154 ;;
155*)
6c79d5f6 156 lddlflags="$lddlflags -bhalt:4 -bM:SRE -bI:\$(PERL_INC)/perl.exp -bE:\$(BASEEXT).exp -b noentry -lc"
b691c02f 157 ;;
c07a80fd 158esac
52e1cb5e 159
104d25b7 160# This script UU/usethreads.cbu will get 'called-back' by Configure
161# after it has prompted the user for whether to use threads.
162cat > UU/usethreads.cbu <<'EOCBU'
163case "$usethreads" in
164$define|true|[yY]*)
4e774c84 165 ccflags="$ccflags -DNEED_PTHREAD_INIT"
166 case "$cc" in
167 gcc) ;;
168 cc_r) ;;
169 cc|xl[cC]_r)
bbc711f9 170 echo >&4 "Switching cc to cc_r because of POSIX threads."
171 # xlc_r has been known to produce buggy code in AIX 4.3.2.
4e774c84 172 # (e.g. pragma/overload core dumps) Let's suspect xlC_r, too.
bbc711f9 173 # --jhi@iki.fi
174 cc=cc_r
4e774c84 175 ;;
176 '')
bbc711f9 177 cc=cc_r
4e774c84 178 ;;
179 *)
180 cat >&4 <<EOM
6b356c8e 181*** For pthreads you should use the AIX C compiler cc_r.
182*** (now your compiler was set to '$cc')
183*** Cannot continue, aborting.
104d25b7 184EOM
4e774c84 185 exit 1
104d25b7 186 ;;
4e774c84 187 esac
188
c88be79f 189 # c_rify libswanted.
190 set `echo X "$libswanted "| sed -e 's/ \([cC]\) / \1_r /g'`
191 shift
192 libswanted="$*"
193 # c_rify lddlflags.
194 set `echo X "$lddlflags "| sed -e 's/ \(-l[cC]\) / \1_r /g'`
195 shift
196 lddlflags="$*"
197
198 # Insert pthreads to libswanted, before any libc or libC.
199 set `echo X "$libswanted "| sed -e 's/ \([cC]\) / pthreads \1 /'`
200 shift
201 libswanted="$*"
202 # Insert pthreads to lddlflags, before any libc or libC.
203 set `echo X "$lddlflags " | sed -e 's/ \(-l[cC]\) / -lpthreads \1 /'`
204 shift
205 lddlflags="$*"
206
104d25b7 207 ;;
208esac
209EOCBU
fa9667c9 210
8a647129 211# This script UU/uselargefiles.cbu will get 'called-back' by Configure
bd9b35c9 212# after it has prompted the user for whether to use large files.
8a647129 213cat > UU/uselargefiles.cbu <<'EOCBU'
bd9b35c9 214case "$uselargefiles" in
10cc9d2a 215''|$define|true|[yY]*)
9422c00b 216# Keep these at the left margin.
45c9e83b 217ccflags_uselargefiles="`getconf XBS5_ILP32_OFFBIG_CFLAGS 2>/dev/null`"
218ldflags_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LDFLAGS 2>/dev/null`"
6b8eaf93 219 # _Somehow_ in AIX 4.3.1.0 the above getconf call manages to
220 # insert(?) *something* to $ldflags so that later (in Configure) evaluating
221 # $ldflags causes a newline after the '-b64' (the result of the getconf).
222 # (nothing strange shows up in $ldflags even in hexdump;
d553adec 223 # so it may be something (a bug) in the shell, instead?)
6b8eaf93 224 # Try it out: just uncomment the below line and rerun Configure:
45c9e83b 225# echo >&4 "AIX 4.3.1.0 $ldflags_uselargefiles mystery" ; exit 1
6b8eaf93 226 # Just don't ask me how AIX does it, I spent hours wondering.
45c9e83b 227 # Therefore the line re-evaluating ldflags_uselargefiles: it seems to fix
6b8eaf93 228 # the whatever it was that AIX managed to break. --jhi
45c9e83b 229 ldflags_uselargefiles="`echo $ldflags_uselargefiles`"
9422c00b 230# Keep this at the left margin.
45c9e83b 231libswanted_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
232 case "$ccflags_uselargefiles$ldflags_uselargefiles$libs_uselargefiles" in
bd9b35c9 233 '');;
45c9e83b 234 *) ccflags="$ccflags $ccflags_uselargefiles"
235 ldflags="$ldflags $ldflags_uselargefiles"
236 libswanted="$libswanted $libswanted_uselargefiles"
bd9b35c9 237 ;;
238 esac
d553adec 239 case "$gccversion" in
240 '') ;;
241 *)
242 cat >&4 <<EOM
243
244*** Warning: gcc in AIX might not work with the largefile support of Perl
245*** (default since 5.6.0), this combination hasn't been tested.
246*** I will try, though.
247
248EOM
249 # Remove xlc-spefific -qflags.
250 ccflags="`echo $ccflags | sed -e 's@ -q[^ ]*@ @g' -e 's@^-q[^ ]* @@g'`"
251 ldflags="`echo $ldflags | sed -e 's@ -q[^ ]*@ @g' -e 's@^-q[^ ]* @@g'`"
252 echo >&4 "(using ccflags $ccflags)"
253 echo >&4 "(using ldflags $ldflags)"
254 ;;
255 esac
256 ;;
bd9b35c9 257esac
258EOCBU
6b8eaf93 259
10cc9d2a 260# This script UU/use64bitint.cbu will get 'called-back' by Configure
de6124c8 261# after it has prompted the user for whether to use 64 bit integers.
10cc9d2a 262cat > UU/use64bitint.cbu <<'EOCBU'
263case "$use64bitint" in
efeaa891 264$define|true|[yY]*)
2d4389e4 265 case "`oslevel`" in
efeaa891 266 3.*|4.[012].*)
267 cat >&4 <<EOM
2d4389e4 268AIX `oslevel` does not support 64-bit interfaces.
19e194ad 269You should upgrade to at least AIX 4.3.
efeaa891 270EOM
271 exit 1
272 ;;
273 esac
19e194ad 274 ;;
275esac
276EOCBU
277
19e194ad 278cat > UU/use64bitall.cbu <<'EOCBU'
de6124c8 279# This script UU/use64bitall.cbu will get 'called-back' by Configure
280# after it has prompted the user for whether to be maximally 64-bitty.
19e194ad 281case "$use64bitall" in
282$define|true|[yY]*)
283 case "`oslevel`" in
284 3.*|4.[012].*)
285 cat >&4 <<EOM
286AIX `oslevel` does not support 64-bit interfaces.
287You should upgrade to at least AIX 4.3.
288EOM
289 exit 1
290 ;;
291 esac
292 echo " "
293 echo "Checking the CPU width of your hardware..." >&4
294 $cat >size.c <<EOCP
295#include <stdio.h>
296#include <sys/systemcfg.h>
297int main (void)
298{
299 printf("%d\n",_system_configuration.width);
300 return(0);
301}
302EOCP
303 set size
304 if eval $compile_ok; then
9422c00b 305 qacpuwidth=`./size`
306 echo "You are running on $qacpuwidth bit hardware."
19e194ad 307 else
308 dflt="32"
309 echo " "
310 echo "(I can't seem to compile the test program. Guessing...)"
311 rp="What is the width of your CPU (in bits)?"
312 . ./myread
9422c00b 313 qacpuwidth="$ans"
19e194ad 314 fi
315 $rm -f size.c size
9422c00b 316 case "$qacpuwidth" in
19e194ad 317 32*)
318 cat >&4 <<EOM
319Bzzzt! At present, you can only perform a
320full 64-bit build on a 64-bit machine.
321EOM
322 exit 1
323 ;;
324 esac
9422c00b 325 qacflags="`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
326 qaldflags="`getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
19e194ad 327 # See jhi's comments above regarding this re-eval. I've
328 # seen similar weirdness in the form of:
329 #
330# 1506-173 (W) Option lm is not valid. Enter xlc for list of valid options.
331 #
332 # error messages from 'cc -E' invocation. Again, the offending
333 # string is simply not detectable by any means. Since it doesn't
334 # do any harm, I didn't pursue it. -- sh
9422c00b 335 qaldflags="`echo $qaldflags`"
336 qalibs="`getconf XBS5_LP64_OFF64_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
8a647129 337 # -q32 and -b32 may have been set by uselargefiles or user.
338 # Remove them.
19e194ad 339 ccflags="`echo $ccflags | sed -e 's@-q32@@'`"
340 ldflags="`echo $ldflags | sed -e 's@-b32@@'`"
341 # Tell archiver to use large format. Unless we remove 'ar'
342 # from 'trylist', the Configure script will just reset it to 'ar'
343 # immediately prior to writing config.sh. This took me hours
344 # to figure out.
bab3591f 345 trylist="`echo $trylist | sed -e 's@^ar @@' -e 's@ ar @ @g' -e 's@ ar$@@'`"
19e194ad 346 ar="ar -X64"
347 nm_opt="-X64 $nm_opt"
9422c00b 348 # Note: Placing the 'qacflags' variable into the 'ldflags' string
349 # is NOT a typo. ldqalags is passed to the C compiler for final
19e194ad 350 # linking, and it wants -q64 (-b64 is for ld only!).
9422c00b 351 case "$qacflags$qaldflags$qalibs" in
19e194ad 352 '');;
9422c00b 353 *) ccflags="$ccflags $qacflags"
354 ldflags="$ldflags $qacflags"
355 lddqalags="$qaldflags $lddqalags"
356 libswanted="$libswanted $qalibs"
19e194ad 357 ;;
358 esac
359 case "$ccflags" in
360 *-DUSE_64_BIT_ALL*) ;;
361 *) ccflags="$ccflags -DUSE_64_BIT_ALL";;
362 esac
363 case "$archname64" in
364 ''|64*) archname64=64all ;;
365 esac
366 longsize="8"
367 # Don't try backwards compatibility
368 bincompat="$undef"
369 d_bincompat5005="$undef"
9422c00b 370 qacflags=''
371 qaldflags=''
372 qalibs=''
373 qacpuwidth=''
efeaa891 374 ;;
375esac
376EOCBU
5b877257 377
de6124c8 378cat > UU/uselongdouble.cbu <<'EOCBU'
d9b3e12d 379# This script UU/uselongdouble.cbu will get 'called-back' by Configure
2d4389e4 380# after it has prompted the user for whether to use long doubles.
d9b3e12d 381case "$uselongdouble" in
382$define|true|[yY]*)
383 ccflags="$ccflags -qlongdouble"
4e774c84 384 # The explicit cc128, xlc128, xlC128 are not needed,
385 # the -qlongdouble should do the trick. --jhi
65f19062 386 d_Gconvert='sprintf((b),"%.*llg",(n),(x))'
d9b3e12d 387 ;;
388esac
389EOCBU
390
c88be79f 391# If the C++ libraries, libC and libC_r, are available we will prefer them
392# over the vanilla libc, because the libC contain loadAndInit() and
4e774c84 393# terminateAndUnload() which work correctly with C++ statics while libc
394# load() and unload() do not. See ext/DynaLoader/dl_aix.xs.
c88be79f 395# The C-to-C_r switch is done by usethreads.cbu, if needed.
0903b405 396if test -f /lib/libC.a -a X"`$cc -v 2>&1 | grep gcc`" = X; then
e32161bd 397 # Cify libswanted.
398 set `echo X "$libswanted "| sed -e 's/ c / C c /'`
399 shift
400 libswanted="$*"
401 # Cify lddlflags.
402 set `echo X "$lddlflags "| sed -e 's/ -lc / -lC -lc /'`
403 shift
404 lddlflags="$*"
c88be79f 405fi
4e774c84 406
5b877257 407# EOF