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