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