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>. |
1aef975c AD |
6 | # Merged on Mon Feb 6 10:22:35 EST 1995 by |
7 | # Andy Dougherty <doughera@lafcol.lafayette.edu> | |
8 | ||
bbc711f9 DF |
9 | # |
10 | # Contact dfavor@corridor.com for any of the following: | |
11 | # | |
12 | # - AIX 43x and above support | |
13 | # - gcc + threads support | |
14 | # - socks support | |
15 | # | |
16 | # Apr 99 changes: | |
17 | # | |
18 | # - use nm in AIX 43x and above | |
19 | # - gcc + threads now builds | |
29209bc5 | 20 | # [(added support for socks) Jul 99 SOCKS support rewritten] |
bbc711f9 DF |
21 | # |
22 | # Notes: | |
23 | # | |
24 | # - shared libperl support is tricky. if ever libperl.a ends up | |
25 | # in /usr/local/lib/* it can override any subsequent builds of | |
26 | # that same perl release. to make sure you know where the shared | |
27 | # libperl.a is coming from do a 'dump -Hv perl' and check all the | |
28 | # library search paths in the loader header. | |
29 | # | |
30 | # it would be nice to warn the user if a libperl.a exists that is | |
31 | # going to override the current build, but that would be complex. | |
32 | # | |
33 | # better yet, a solid fix for this situation should be developed. | |
34 | # | |
1aef975c AD |
35 | |
36 | # Configure finds setrgid and setruid, but they're useless. The man | |
37 | # pages state: | |
38 | # setrgid: The EPERM error code is always returned. | |
39 | # setruid: The EPERM error code is always returned. Processes cannot | |
4e774c84 | 40 | # reset only their real user IDs. |
a0d0e21e LW |
41 | d_setrgid='undef' |
42 | d_setruid='undef' | |
1aef975c | 43 | |
5f3774a9 | 44 | alignbytes=8 |
a5f75d66 | 45 | |
86959918 JH |
46 | case "$usemymalloc" in |
47 | '') usemymalloc='n' ;; | |
48 | esac | |
bbc711f9 DF |
49 | |
50 | # Intuiting the existence of system calls under AIX is difficult, | |
51 | # at best; the safest technique is to find them empirically. | |
52 | ||
53 | # AIX 4.3.* and above default to using nm for symbol extraction | |
54 | case "$osvers" in | |
55 | 3.*|4.1.*|4.2.*) | |
56 | usenm='undef' | |
57 | ;; | |
58 | *) | |
59 | usenm='true' | |
60 | ;; | |
61 | esac | |
cc628cc3 | 62 | |
3c321fdc | 63 | so="a" |
0d9ec2f4 JH |
64 | # AIX itself uses .o (libc.o) but we prefer compatibility |
65 | # with the rest of the world and with rest of the scripting | |
66 | # languages (Tcl, Python) and related systems (SWIG). | |
67 | # Stephanie Beals <bealzy@us.ibm.com> | |
68 | dlext="so" | |
3c321fdc | 69 | |
bbc711f9 DF |
70 | # Trying to set this breaks the POSIX.c compilation |
71 | ||
1aef975c AD |
72 | # Make setsockopt work correctly. See man page. |
73 | # ccflags='-D_BSD=44' | |
74 | ||
75 | # uname -m output is too specific and not appropriate here | |
76 | case "$archname" in | |
77 | '') archname="$osname" ;; | |
78 | esac | |
79 | ||
80 | case "$osvers" in | |
81 | 3*) d_fchmod=undef | |
fc2c2f48 | 82 | ccflags="$ccflags -D_ALL_SOURCE" |
1aef975c AD |
83 | ;; |
84 | *) # These hints at least work for 4.x, possibly other systems too. | |
fc2c2f48 | 85 | ccflags="$ccflags -D_ALL_SOURCE -D_ANSI_C_SOURCE -D_POSIX_SOURCE" |
80589958 | 86 | case "$cc" in |
87 | *gcc*) ;; | |
86959918 | 88 | *) ccflags="$ccflags -qmaxmem=16384" ;; |
80589958 | 89 | esac |
1aef975c | 90 | nm_opt='-B' |
1aef975c AD |
91 | ;; |
92 | esac | |
93 | ||
bbc711f9 DF |
94 | # These functions don't work like Perl expects them to. |
95 | d_setregid='undef' | |
96 | d_setreuid='undef' | |
97 | ||
1aef975c | 98 | # Changes for dynamic linking by Wayne Scott <wscott@ichips.intel.com> |
a0d0e21e LW |
99 | # |
100 | # Tell perl which symbols to export for dynamic linking. | |
4633a7c4 | 101 | case "$cc" in |
5f9d9a17 | 102 | *gcc*) ccdlflags='-Xlinker' ;; |
4633a7c4 | 103 | esac |
5f9d9a17 ME |
104 | # the required -bE:$installarchlib/CORE/perl.exp is added by |
105 | # libperl.U (Configure) later. | |
a0d0e21e | 106 | |
5cf1d1f1 JH |
107 | case "$ldlibpthname" in |
108 | '') ldlibpthname=LIBPATH ;; | |
109 | esac | |
110 | ||
a0d0e21e LW |
111 | # The first 3 options would not be needed if dynamic libs. could be linked |
112 | # with the compiler instead of ld. | |
42793c05 | 113 | # -bI:$(PERL_INC)/perl.exp Read the exported symbols from the perl binary |
4e774c84 SB |
114 | # -bE:$(BASEEXT).exp Export these symbols. This file contains only one |
115 | # symbol: boot_$(EXP) can it be auto-generated? | |
c07a80fd | 116 | case "$osvers" in |
117 | 3*) | |
5b877257 | 118 | lddlflags="$lddlflags -H512 -T512 -bhalt:4 -bM:SRE -bI:$(PERL_INC)/perl.exp -bE:$(BASEEXT).exp -e _nostart -lc" |
c07a80fd | 119 | ;; |
120 | *) | |
5b877257 | 121 | lddlflags="$lddlflags -bhalt:4 -bM:SRE -bI:$(PERL_INC)/perl.exp -bE:$(BASEEXT).exp -b noentry -lc" |
b691c02f | 122 | ;; |
c07a80fd | 123 | esac |
52e1cb5e | 124 | |
104d25b7 JH |
125 | # This script UU/usethreads.cbu will get 'called-back' by Configure |
126 | # after it has prompted the user for whether to use threads. | |
127 | cat > UU/usethreads.cbu <<'EOCBU' | |
128 | case "$usethreads" in | |
129 | $define|true|[yY]*) | |
4e774c84 SB |
130 | ccflags="$ccflags -DNEED_PTHREAD_INIT" |
131 | case "$cc" in | |
132 | gcc) ;; | |
133 | cc_r) ;; | |
134 | cc|xl[cC]_r) | |
bbc711f9 DF |
135 | echo >&4 "Switching cc to cc_r because of POSIX threads." |
136 | # xlc_r has been known to produce buggy code in AIX 4.3.2. | |
4e774c84 | 137 | # (e.g. pragma/overload core dumps) Let's suspect xlC_r, too. |
bbc711f9 DF |
138 | # --jhi@iki.fi |
139 | cc=cc_r | |
549a6b10 | 140 | if test ! -e /bin/cc_r; then |
4e774c84 | 141 | cat >&4 <<EOM |
549a6b10 | 142 | For pthreads you should use the AIX C compiler cc_r. |
4e774c84 | 143 | But I cannot find it as /bin/cc_r. |
549a6b10 JH |
144 | Cannot continue, aborting. |
145 | EOM | |
146 | fi | |
4e774c84 SB |
147 | ;; |
148 | '') | |
bbc711f9 | 149 | cc=cc_r |
4e774c84 SB |
150 | ;; |
151 | *) | |
152 | cat >&4 <<EOM | |
bbc711f9 | 153 | For pthreads you should use the AIX C compiler cc_r. |
549a6b10 | 154 | (now your compiler was set to '$cc') |
104d25b7 JH |
155 | Cannot continue, aborting. |
156 | EOM | |
4e774c84 | 157 | exit 1 |
104d25b7 | 158 | ;; |
4e774c84 SB |
159 | esac |
160 | ||
c88be79f JH |
161 | # c_rify libswanted. |
162 | set `echo X "$libswanted "| sed -e 's/ \([cC]\) / \1_r /g'` | |
163 | shift | |
164 | libswanted="$*" | |
165 | # c_rify lddlflags. | |
166 | set `echo X "$lddlflags "| sed -e 's/ \(-l[cC]\) / \1_r /g'` | |
167 | shift | |
168 | lddlflags="$*" | |
169 | ||
170 | # Insert pthreads to libswanted, before any libc or libC. | |
171 | set `echo X "$libswanted "| sed -e 's/ \([cC]\) / pthreads \1 /'` | |
172 | shift | |
173 | libswanted="$*" | |
174 | # Insert pthreads to lddlflags, before any libc or libC. | |
175 | set `echo X "$lddlflags " | sed -e 's/ \(-l[cC]\) / -lpthreads \1 /'` | |
176 | shift | |
177 | lddlflags="$*" | |
178 | ||
104d25b7 JH |
179 | ;; |
180 | esac | |
181 | EOCBU | |
fa9667c9 | 182 | |
efeaa891 JH |
183 | # This script UU/use64bits.cbu will get 'called-back' by Configure |
184 | # after it has prompted the user for whether to use 64 bits. | |
185 | cat > UU/use64bits.cbu <<'EOCBU' | |
186 | case "$use64bits" in | |
187 | $define|true|[yY]*) | |
2d4389e4 | 188 | case "`oslevel`" in |
efeaa891 JH |
189 | 3.*|4.[012].*) |
190 | cat >&4 <<EOM | |
2d4389e4 JH |
191 | AIX `oslevel` does not support 64-bit interfaces. |
192 | You should upgrade to at least AIX 4.2. | |
efeaa891 JH |
193 | EOM |
194 | exit 1 | |
195 | ;; | |
196 | esac | |
d7d93a81 JH |
197 | case "$ccflags" in |
198 | *-DUSE_LONG_LONG*) ;; | |
199 | *) ccflags="$ccflags -DUSE_LONG_LONG" ;; | |
200 | esac | |
d9b3e12d | 201 | ccflags="$ccflags `getconf XBS5_ILP32_OFFBIG_CFLAGS 2>/dev/null`" |
dd4e71fd | 202 | |
d9b3e12d | 203 | ldflags="$ldflags `getconf XBS5_ILP32_OFFBIG_LDFLAGS 2>/dev/null`" |
dd4e71fd JH |
204 | # _Somehow_ in AIX 4.3.1.0 the above getconf call manages to |
205 | # insert(?) *something* to $ldflags so that later (in Configure) evaluating | |
206 | # $ldflags causes a newline after the '-b64' (the result of the getconf). | |
2d4389e4 JH |
207 | # (nothing strange shows up in $ldflags even in hexdump; |
208 | # so it may be something in the shell, instead?) | |
dd4e71fd | 209 | # Try it out: just uncomment the below line and rerun Configure: |
c88be79f | 210 | # echo >&4 "AIX 4.3.1.0 $ldflags mystery" ; exit 1 |
dd4e71fd | 211 | # Just don't ask me how AIX does it. |
2d4389e4 | 212 | # Therefore the line re-evaluating ldflags: it seems to bypass |
4e774c84 | 213 | # the whatever it was that AIX managed to break. --jhi |
dd4e71fd JH |
214 | ldflags="`echo $ldflags`" |
215 | ||
2d4389e4 | 216 | libswanted="$libswanted `getconf XBS5_ILP32_OFFBIG_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g'`" |
efeaa891 JH |
217 | # When a 64-bit cc becomes available $archname64 |
218 | # may need setting so that $archname gets it attached. | |
219 | ;; | |
220 | esac | |
221 | EOCBU | |
5b877257 | 222 | |
d9b3e12d | 223 | # This script UU/uselongdouble.cbu will get 'called-back' by Configure |
2d4389e4 | 224 | # after it has prompted the user for whether to use long doubles. |
d9b3e12d JH |
225 | cat > UU/uselongdouble.cbu <<'EOCBU' |
226 | case "$uselongdouble" in | |
227 | $define|true|[yY]*) | |
228 | ccflags="$ccflags -qlongdouble" | |
4e774c84 SB |
229 | # The explicit cc128, xlc128, xlC128 are not needed, |
230 | # the -qlongdouble should do the trick. --jhi | |
d9b3e12d JH |
231 | ;; |
232 | esac | |
233 | EOCBU | |
234 | ||
c88be79f JH |
235 | # If the C++ libraries, libC and libC_r, are available we will prefer them |
236 | # over the vanilla libc, because the libC contain loadAndInit() and | |
4e774c84 SB |
237 | # terminateAndUnload() which work correctly with C++ statics while libc |
238 | # load() and unload() do not. See ext/DynaLoader/dl_aix.xs. | |
c88be79f | 239 | # The C-to-C_r switch is done by usethreads.cbu, if needed. |
0903b405 | 240 | if test -f /lib/libC.a -a X"`$cc -v 2>&1 | grep gcc`" = X; then |
e32161bd JH |
241 | # Cify libswanted. |
242 | set `echo X "$libswanted "| sed -e 's/ c / C c /'` | |
243 | shift | |
244 | libswanted="$*" | |
245 | # Cify lddlflags. | |
246 | set `echo X "$lddlflags "| sed -e 's/ -lc / -lC -lc /'` | |
247 | shift | |
248 | lddlflags="$*" | |
c88be79f | 249 | fi |
4e774c84 | 250 | |
5b877257 | 251 | # EOF |