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