Commit | Line | Data |
20d11268 |
1 | If you read this file _as_is_, just ignore the funny characters you see. |
2 | It is written in the POD format (see pod/perlpod.pod) which is specially |
3 | designed to be readable as is. |
4 | |
5 | =head1 NAME |
6 | |
7 | README.aix - Perl version 5 on IBM Unix (AIX) systems |
8 | |
9 | =head1 DESCRIPTION |
10 | |
a318903f |
11 | This document describes various features of IBM's Unix operating |
12 | system (AIX) that will affect how Perl version 5 (hereafter just Perl) |
13 | is compiled and/or runs. |
20d11268 |
14 | |
15 | =head2 Compiling Perl 5 on AIX |
16 | |
c5252117 |
17 | For information on compilers on older versions of AIX, see L<Compiling |
18 | Perl 5 on older AIX versions up to 4.3.3>. |
7fabfece |
19 | |
20 | When compiling Perl, you must use an ANSI C compiler. AIX does not ship |
21 | an ANSI compliant C-compiler with AIX by default, but binary builds of |
22 | gcc for AIX are widely available. |
23 | |
24 | =head2 Supported Compilers |
25 | |
26 | Currently all versions of IBM's "xlc", "xlc_r", "cc", "cc_r" or |
c5252117 |
27 | "vac" ANSI/C compiler will work for building Perl if that compiler |
7fabfece |
28 | works on your system. |
29 | |
c5252117 |
30 | If you plan to link Perl to any module that requires thread-support, |
e1051f11 |
31 | like DBD::Oracle, it is better to use the _r version of the compiler. |
c5252117 |
32 | This will not build a threaded Perl, but a thread-enabled Perl. See |
33 | also L<Threaded Perl> later on. |
e1051f11 |
34 | |
e3c125ff |
35 | As of writing (2009-07) only the IBM XL C for AIX or XL C/C++ for AIX |
7fabfece |
36 | compiler is supported by IBM on AIX 5L/6.1. |
37 | |
38 | The following compiler versions are supported by IBM: |
39 | |
40 | XL C and XL C/C++ V7, V8, V9, V10 |
41 | |
42 | The XL C for AIX is integrated in the XL C/C++ for AIX compiler. |
43 | |
fe5460cc |
44 | If you choose XL C/C++ V9 you need APAR IZ35785 installed |
45 | otherwise the integrated SDBM_File do not compile correctly due |
46 | to an optimization bug. You can circumvent this problem by |
47 | adding -qipa to the optimization flags (-Doptimize='-O -qipa'). |
e3c125ff |
48 | The PTF for APAR IZ35785 which solves this problem is available |
49 | from IBM (April 2009 PTF for XL C/C++ Enterprise Edition for AIX, V9.0). |
7fabfece |
50 | |
fe5460cc |
51 | Perl can be compiled with either IBM's ANSI C compiler or with gcc. |
52 | The former is recommended, as not only it can compile Perl with no |
53 | difficulty, but also can take advantage of features listed later |
7fabfece |
54 | that require the use of IBM compiler-specific command-line flags. |
55 | |
fe5460cc |
56 | If you decide to use gcc, make sure your installation is recent and |
57 | complete, and be sure to read the Perl INSTALL file for more gcc-specific |
58 | details. Please report any hoops you had to jump through to the |
7fabfece |
59 | development team. |
60 | |
e3c125ff |
61 | =head2 Incompatibility with AIX Toolbox lib gdbm |
62 | |
63 | If the AIX Toolbox version of lib gdbm 1.8.x ist installed on the |
64 | system then Perl will not work. This library contains a defect version |
65 | of the dbm_store() function. |
66 | |
67 | =head2 Perl 5.10 was successfully compiled and tested on: |
68 | |
fe5460cc |
69 | AIX Level | Compiler Level | w th | w/o th |
70 | --------------------------+-------------------------+------+------- |
71 | 5.1 TL9 32 bit | XL C/C++ V7 | OK | OK |
72 | 5.1 TL9 32 bit | gcc 3.2.2 | OK | OK |
73 | 5.1 TL9 64 bit | XL C/C++ V7 | OK | OK |
74 | 5.2 TL10 32 bit | XL C/C++ V8 | OK | OK |
e3c125ff |
75 | 5.2 TL8 64 bit | VA C/C++ V6 | OK | OK |
fe5460cc |
76 | 5.2 TL10 64 bit | XL C/C++ V8 | OK | OK |
77 | 5.3 TL7 32 bit | XL C/C++ V9 + IZ35785 | OK | OK |
78 | 5.3 TL7 32 bit | gcc 4.2.4 | OK | OK |
79 | 5.3 TL7 64 bit | XL C/C++ V9 + IZ35785 | OK | OK |
80 | 6.1 TL1 32 bit | XL C/C++ V10 | OK | OK |
81 | 6.1 TL1 64 bit + IZ39077 | XL C/C++ V10 | OK | OK |
e3c125ff |
82 | |
fe5460cc |
83 | w th = with thread |
84 | w/o th = without thread |
e3c125ff |
85 | nyt = not yet tested |
86 | OK = tested |
fe5460cc |
87 | |
88 | Successfully tested means that all make test runs with an result of 100% OK. |
89 | All tests were conducted with -Duseshrplib set. |
90 | |
7fabfece |
91 | =head2 Building Dynamic Extensions on AIX |
92 | |
fe5460cc |
93 | Starting from Perl 5.7.2 (and consequently 5.8.x / 5.10.x) and AIX 4.3 |
94 | or newer Perl uses the AIX native dynamic loading interface in the so |
95 | called runtime linking mode instead of the emulated interface that was |
96 | used in Perl releases 5.6.1 and earlier or, for AIX releases 4.2 and |
97 | earlier. This change does break backward compatibility with compiled |
98 | modules from earlier Perl releases. The change was made to make Perl |
99 | more compliant with other applications like Apache/mod_perl which are |
100 | using the AIX native interface. This change also enables the use of |
101 | C++ code with static constructors and destructors in Perl extensions, |
7fabfece |
102 | which was not possible using the emulated interface. |
103 | |
104 | It is highly recommended to use the new interface. |
105 | |
106 | =head2 Using Large Files with Perl |
107 | |
108 | Should yield no problems. |
109 | |
110 | =head2 Threaded Perl |
111 | |
81189653 |
112 | Should yield no problems with AIX 5.1 / 5.2 / 5.3 and 6.1. |
7fabfece |
113 | |
81189653 |
114 | IBM uses the AIX system Perl (V5.6.0 on AIX 5.1 and V5.8.2 on |
115 | AIX 5.2 / 5.3 and 6.1) for some AIX |
116 | system scripts. If you switch the links in /usr/bin from the |
7fabfece |
117 | AIX system Perl (/usr/opt/perl5) to the newly build Perl then you |
118 | get the same features as with the IBM AIX system Perl if the |
119 | threaded options are used. |
120 | |
c5252117 |
121 | The threaded Perl build works also on AIX 5.1 but the IBM Perl |
81189653 |
122 | build (Perl v5.6.0) is not threaded on AIX 5.1. |
123 | |
7fabfece |
124 | =head2 64-bit Perl |
125 | |
126 | If your AIX system is installed with 64-bit support, you can expect 64-bit |
127 | configurations to work. If you want to use 64-bit Perl on AIX 6.1 |
128 | you need a APAR for a libc.a bug which affects (n)dbm_XXX functions. |
81189653 |
129 | The APAR number for this problem is IZ39077. |
7fabfece |
130 | |
131 | If you need more memory (larger data segment) for your Perl programs you |
132 | can set: |
133 | |
134 | /etc/security/limits |
135 | default: (or your user) |
e3c125ff |
136 | data = -1 (default is 262144 * 512 byte) |
7fabfece |
137 | |
138 | With the default setting the size is limited to 128MB. |
139 | The -1 removes this limit. |
140 | |
e1051f11 |
141 | =head2 Recommended Options AIX 5.1/5.2/5.3 and 6.1 (threaded/32-bit) |
7fabfece |
142 | |
143 | With the following options you get a threaded Perl version which |
144 | passes all make tests in threaded 32-bit mode, which is the default |
c5252117 |
145 | configuration for the Perl builds that AIX ships with. |
7fabfece |
146 | |
147 | rm config.sh |
148 | ./Configure \ |
149 | -d \ |
150 | -Dcc=cc_r \ |
151 | -Duseshrplib \ |
152 | -Dusethreads \ |
153 | -Dprefix=/usr/opt/perl5_32 |
154 | |
fe5460cc |
155 | The -Dprefix option will install Perl in a directory parallel to the |
7fabfece |
156 | IBM AIX system Perl installation. |
157 | |
158 | =head2 Recommended Options AIX 5.1/5.2/5.3 and 6.1 (32-bit) |
159 | |
fe5460cc |
160 | With the following options you get a Perl version which passes |
7fabfece |
161 | all make tests in 32-bit mode. |
162 | |
163 | rm config.sh |
164 | ./Configure \ |
165 | -d \ |
166 | -Dcc=cc_r \ |
167 | -Duseshrplib \ |
168 | -Dprefix=/usr/opt/perl5_32 |
169 | |
170 | The -Dprefix option will install Perl in a directory parallel to the |
171 | IBM AIX system Perl installation. |
172 | |
e1051f11 |
173 | =head2 Recommended Options AIX 5.1/5.2/5.3 and 6.1 (threaded/64-bit) |
7fabfece |
174 | |
175 | With the following options you get a threaded Perl version which |
176 | passes all make tests in 64-bit mode. |
177 | |
178 | export OBJECT_MODE=64 / setenv OBJECT_MODE 64 (depending on your shell) |
179 | |
180 | rm config.sh |
181 | ./Configure \ |
182 | -d \ |
183 | -Dcc=cc_r \ |
184 | -Duseshrplib \ |
185 | -Dusethreads \ |
186 | -Duse64bitall \ |
187 | -Dprefix=/usr/opt/perl5_64 |
188 | |
189 | =head2 Recommended Options AIX 5.1/5.2/5.3 and 6.1(64-bit) |
190 | |
fe5460cc |
191 | With the following options you get a Perl version which passes all |
192 | make tests in 64-bit mode. |
7fabfece |
193 | |
194 | export OBJECT_MODE=64 / setenv OBJECT_MODE 64 (depending on your shell) |
e3c125ff |
195 | |
7fabfece |
196 | rm config.sh |
197 | ./Configure \ |
198 | -d \ |
199 | -Dcc=cc_r \ |
200 | -Duseshrplib \ |
201 | -Duse64bitall \ |
202 | -Dprefix=/usr/opt/perl5_64 |
203 | |
fe5460cc |
204 | The -Dprefix option will install Perl in a directory parallel to the |
7fabfece |
205 | IBM AIX system Perl installation. |
206 | |
fe5460cc |
207 | If you choose gcc to compile 64-bit Perl then you need to use the |
208 | following options: |
209 | |
210 | -Dcc='gcc -maix64' |
211 | |
212 | |
213 | =head2 Compiling Perl 5 on older AIX versions up to 4.3.3 |
214 | |
215 | Due to the fact that AIX 4.3.3 reached end-of-service in December 31, |
216 | 2003 this information is provided as is. The Perl versions prior to |
217 | Perl 5.8.9 could be compiled on AIX up to 4.3.3 with the following |
218 | settings (your mileage may vary): |
7fabfece |
219 | |
d5d9880c |
220 | When compiling Perl, you must use an ANSI C compiler. AIX does not ship |
20d11268 |
221 | an ANSI compliant C-compiler with AIX by default, but binary builds of |
222 | gcc for AIX are widely available. |
223 | |
224 | At the moment of writing, AIX supports two different native C compilers, |
4951a6f9 |
225 | for which you have to pay: B<xlC> and B<vac>. If you decide to use either |
20d11268 |
226 | of these two (which is quite a lot easier than using gcc), be sure to |
227 | upgrade to the latest available patch level. Currently: |
228 | |
c67773d0 |
229 | xlC.C 3.1.4.10 or 3.6.6.0 or 4.0.2.2 or 5.0.2.9 or 6.0.0.3 |
230 | vac.C 4.4.0.3 or 5.0.2.6 or 6.0.0.1 |
231 | |
232 | note that xlC has the OS version in the name as of version 4.0.2.0, so |
233 | you will find xlC.C for AIX-5.0 as package |
234 | |
235 | xlC.aix50.rte 5.0.2.0 or 6.0.0.3 |
236 | |
66a1b24b |
237 | subversions are not the same "latest" on all OS versions. For example, |
c67773d0 |
238 | the latest xlC-5 on aix41 is 5.0.2.9, while on aix43, it is 5.0.2.7. |
20d11268 |
239 | |
a318903f |
240 | Perl can be compiled with either IBM's ANSI C compiler or with gcc. |
241 | The former is recommended, as not only can it compile Perl with no |
20d11268 |
242 | difficulty, but also can take advantage of features listed later that |
243 | require the use of IBM compiler-specific command-line flags. |
244 | |
12f54d27 |
245 | The IBM's compiler patch levels 5.0.0.0 and 5.0.1.0 have compiler |
246 | optimization bugs that affect compiling perl.c and regcomp.c, |
247 | respectively. If Perl's configuration detects those compiler patch |
248 | levels, optimization is turned off for the said source code files. |
249 | Upgrading to at least 5.0.2.0 is recommended. |
250 | |
20d11268 |
251 | If you decide to use gcc, make sure your installation is recent and |
eed1f4d3 |
252 | complete, and be sure to read the Perl INSTALL file for more gcc-specific |
60ecc970 |
253 | details. Please report any hoops you had to jump through to the development |
254 | team. |
20d11268 |
255 | |
256 | =head2 OS level |
257 | |
258 | Before installing the patches to the IBM C-compiler you need to know the |
259 | level of patching for the Operating System. IBM's command 'oslevel' will |
64cb7701 |
260 | show the base, but is not always complete (in this example oslevel shows |
261 | 4.3.NULL, whereas the system might run most of 4.3.THREE): |
1a3e4d88 |
262 | |
20d11268 |
263 | # oslevel |
264 | 4.3.0.0 |
265 | # lslpp -l | grep 'bos.rte ' |
e41d30bc |
266 | bos.rte 4.3.3.75 COMMITTED Base Operating System Runtime |
267 | bos.rte 4.3.2.0 COMMITTED Base Operating System Runtime |
268 | # |
269 | |
c5252117 |
270 | The same might happen to AIX 5.1 or other OS levels. As a side note, Perl |
64cb7701 |
271 | cannot be built without bos.adt.syscalls and bos.adt.libm installed |
1a3e4d88 |
272 | |
273 | # lslpp -l | egrep "syscalls|libm" |
274 | bos.adt.libm 5.1.0.25 COMMITTED Base Application Development |
c67773d0 |
275 | bos.adt.syscalls 5.1.0.36 COMMITTED System Calls Application |
64cb7701 |
276 | # |
20d11268 |
277 | |
278 | =head2 Building Dynamic Extensions on AIX |
279 | |
8218ea5d |
280 | AIX supports dynamically loadable objects as well as shared libraries. |
281 | Shared libraries by convention end with the suffix .a, which is a bit |
282 | misleading, as an archive can contain static as well as dynamic members. |
c5252117 |
283 | For Perl dynamically loaded objects we use the .so suffix also used on |
8218ea5d |
284 | many other platforms. |
285 | |
286 | Note that starting from Perl 5.7.2 (and consequently 5.8.0) and AIX 4.3 |
287 | or newer Perl uses the AIX native dynamic loading interface in the so |
288 | called runtime linking mode instead of the emulated interface that was |
289 | used in Perl releases 5.6.1 and earlier or, for AIX releases 4.2 and |
290 | earlier. This change does break backward compatibility with compiled |
c5252117 |
291 | modules from earlier Perl releases. The change was made to make Perl |
efc3b6b5 |
292 | more compliant with other applications like Apache/mod_perl which are |
8218ea5d |
293 | using the AIX native interface. This change also enables the use of C++ |
c5252117 |
294 | code with static constructors and destructors in Perl extensions, which |
8218ea5d |
295 | was not possible using the emulated interface. |
12f54d27 |
296 | |
20d11268 |
297 | =head2 The IBM ANSI C Compiler |
298 | |
299 | All defaults for Configure can be used. |
300 | |
301 | If you've chosen to use vac 4, be sure to run 4.4.0.3. Older versions |
4951a6f9 |
302 | will turn up nasty later on. For vac 5 be sure to run at least 5.0.1.0, |
c67773d0 |
303 | but vac 5.0.2.6 or up is highly recommended. Note that since IBM has |
304 | removed vac 5.0.2.1 through 5.0.2.5 from the software depot, these |
305 | versions should be considered obsolete. |
20d11268 |
306 | |
a318903f |
307 | Here's a brief lead of how to upgrade the compiler to the latest |
308 | level. Of course this is subject to changes. You can only upgrade |
309 | versions from ftp-available updates if the first three digit groups |
310 | are the same (in where you can skip intermediate unlike the patches |
c5252117 |
311 | in the developer snapshots of Perl), or to one version up where the |
66a1b24b |
312 | "base" is available. In other words, the AIX compiler patches are |
a318903f |
313 | cumulative. |
314 | |
315 | vac.C.4.4.0.1 => vac.C.4.4.0.3 is OK (vac.C.4.4.0.2 not needed) |
316 | xlC.C.3.1.3.3 => xlC.C.3.1.4.10 is NOT OK (xlC.C.3.1.4.0 is not available) |
317 | |
318 | # ftp ftp.software.ibm.com |
319 | Connected to service.boulder.ibm.com. |
320 | : welcome message ... |
321 | Name (ftp.software.ibm.com:merijn): anonymous |
322 | 331 Guest login ok, send your complete e-mail address as password. |
323 | Password: |
324 | ... accepted login stuff |
325 | ftp> cd /aix/fixes/v4/ |
326 | ftp> dir other other.ll |
327 | output to local-file: other.ll? y |
328 | 200 PORT command successful. |
329 | 150 Opening ASCII mode data connection for /bin/ls. |
330 | 226 Transfer complete. |
331 | ftp> dir xlc xlc.ll |
332 | output to local-file: xlc.ll? y |
333 | 200 PORT command successful. |
334 | 150 Opening ASCII mode data connection for /bin/ls. |
335 | 226 Transfer complete. |
336 | ftp> bye |
337 | ... goodbye messages |
338 | # ls -l *.ll |
339 | -rw-rw-rw- 1 merijn system 1169432 Nov 2 17:29 other.ll |
340 | -rw-rw-rw- 1 merijn system 29170 Nov 2 17:29 xlc.ll |
341 | |
342 | On AIX 4.2 using xlC, we continue: |
343 | |
344 | # lslpp -l | fgrep 'xlC.C ' |
345 | xlC.C 3.1.4.9 COMMITTED C for AIX Compiler |
346 | xlC.C 3.1.4.0 COMMITTED C for AIX Compiler |
347 | # grep 'xlC.C.3.1.4.*.bff' xlc.ll |
348 | -rw-r--r-- 1 45776101 1 6286336 Jul 22 1996 xlC.C.3.1.4.1.bff |
349 | -rw-rw-r-- 1 45776101 1 6173696 Aug 24 1998 xlC.C.3.1.4.10.bff |
350 | -rw-r--r-- 1 45776101 1 6319104 Aug 14 1996 xlC.C.3.1.4.2.bff |
351 | -rw-r--r-- 1 45776101 1 6316032 Oct 21 1996 xlC.C.3.1.4.3.bff |
352 | -rw-r--r-- 1 45776101 1 6315008 Dec 20 1996 xlC.C.3.1.4.4.bff |
353 | -rw-rw-r-- 1 45776101 1 6178816 Mar 28 1997 xlC.C.3.1.4.5.bff |
354 | -rw-rw-r-- 1 45776101 1 6188032 May 22 1997 xlC.C.3.1.4.6.bff |
355 | -rw-rw-r-- 1 45776101 1 6191104 Sep 5 1997 xlC.C.3.1.4.7.bff |
356 | -rw-rw-r-- 1 45776101 1 6185984 Jan 13 1998 xlC.C.3.1.4.8.bff |
357 | -rw-rw-r-- 1 45776101 1 6169600 May 27 1998 xlC.C.3.1.4.9.bff |
358 | # wget ftp://ftp.software.ibm.com/aix/fixes/v4/xlc/xlC.C.3.1.4.10.bff |
359 | # |
360 | |
361 | On AIX 4.3 using vac, we continue: |
362 | |
64cb7701 |
363 | # lslpp -l | grep 'vac.C ' |
364 | vac.C 5.0.2.2 COMMITTED C for AIX Compiler |
365 | vac.C 5.0.2.0 COMMITTED C for AIX Compiler |
366 | # grep 'vac.C.5.0.2.*.bff' other.ll |
367 | -rw-rw-r-- 1 45776101 1 13592576 Apr 16 2001 vac.C.5.0.2.0.bff |
368 | -rw-rw-r-- 1 45776101 1 14133248 Apr 9 2002 vac.C.5.0.2.3.bff |
369 | -rw-rw-r-- 1 45776101 1 14173184 May 20 2002 vac.C.5.0.2.4.bff |
c67773d0 |
370 | -rw-rw-r-- 1 45776101 1 14192640 Nov 22 2002 vac.C.5.0.2.6.bff |
371 | # wget ftp://ftp.software.ibm.com/aix/fixes/v4/other/vac.C.5.0.2.6.bff |
a318903f |
372 | # |
373 | |
64cb7701 |
374 | Likewise on all other OS levels. Then execute the following command, and |
375 | fill in its choices |
a318903f |
376 | |
377 | # smit install_update |
378 | -> Install and Update from LATEST Available Software |
c67773d0 |
379 | * INPUT device / directory for software [ vac.C.5.0.2.6.bff ] |
a318903f |
380 | [ OK ] |
381 | [ OK ] |
382 | |
383 | Follow the messages ... and you're done. |
384 | |
8381f7b7 |
385 | If you like a more web-like approach, a good start point can be |
386 | http://www14.software.ibm.com/webapp/download/downloadaz.jsp and click |
387 | "C for AIX", and follow the instructions. |
388 | |
e083a1cd |
389 | =head2 The usenm option |
390 | |
391 | If linking miniperl |
392 | |
393 | cc -o miniperl ... miniperlmain.o opmini.o perl.o ... -lm -lc ... |
394 | |
395 | causes error like this |
396 | |
397 | ld: 0711-317 ERROR: Undefined symbol: .aintl |
398 | ld: 0711-317 ERROR: Undefined symbol: .copysignl |
399 | ld: 0711-317 ERROR: Undefined symbol: .syscall |
400 | ld: 0711-317 ERROR: Undefined symbol: .eaccess |
401 | ld: 0711-317 ERROR: Undefined symbol: .setresuid |
402 | ld: 0711-317 ERROR: Undefined symbol: .setresgid |
403 | ld: 0711-317 ERROR: Undefined symbol: .setproctitle |
404 | ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. |
405 | |
406 | you could retry with |
407 | |
408 | make realclean |
409 | rm config.sh |
410 | ./Configure -Dusenm ... |
411 | |
412 | which makes Configure to use the C<nm> tool when scanning for library |
413 | symbols, which usually is not done in AIX. |
414 | |
dd993642 |
415 | Related to this, you probably should not use the C<-r> option of |
416 | Configure in AIX, because that affects of how the C<nm> tool is used. |
417 | |
c5252117 |
418 | =head2 Using GNU's gcc for building Perl |
20d11268 |
419 | |
c67773d0 |
420 | Using gcc-3.x (tested with 3.0.4, 3.1, and 3.2) now works out of the box, |
421 | as do recent gcc-2.9 builds available directly from IBM as part of their |
422 | Linux compatibility packages, available here: |
818c4caa |
423 | |
4238f5a6 |
424 | http://www.ibm.com/servers/aix/products/aixos/linux/ |
20d11268 |
425 | |
20d11268 |
426 | =head2 Using Large Files with Perl |
427 | |
60ecc970 |
428 | Should yield no problems. |
20d11268 |
429 | |
430 | =head2 Threaded Perl |
431 | |
60ecc970 |
432 | Threads seem to work OK, though at the moment not all tests pass when |
1d69df2b |
433 | threads are used in combination with 64-bit configurations. |
20d11268 |
434 | |
bef58541 |
435 | You may get a warning when doing a threaded build: |
436 | |
437 | "pp_sys.c", line 4640.39: 1506-280 (W) Function argument assignment between types "unsigned char*" and "const void*" is not allowed. |
438 | |
439 | The exact line number may vary, but if the warning (W) comes from a line |
440 | line this |
441 | |
442 | hent = PerlSock_gethostbyaddr(addr, (Netdb_hlen_t) addrlen, addrtype); |
443 | |
444 | in the "pp_ghostent" function, you may ignore it safely. The warning |
445 | is caused by the reentrant variant of gethostbyaddr() having a slightly |
446 | different prototype than its non-reentrant variant, but the difference |
447 | is not really significant here. |
448 | |
20d11268 |
449 | =head2 64-bit Perl |
450 | |
1d69df2b |
451 | If your AIX is installed with 64-bit support, you can expect 64-bit |
12f54d27 |
452 | configurations to work. In combination with threads some tests might |
453 | still fail. |
20d11268 |
454 | |
12f54d27 |
455 | =head2 AIX 4.2 and extensions using C++ with statics |
20d11268 |
456 | |
12f54d27 |
457 | In AIX 4.2 Perl extensions that use C++ functions that use statics |
458 | may have problems in that the statics are not getting initialized. |
459 | In newer AIX releases this has been solved by linking Perl with |
460 | the libC_r library, but unfortunately in AIX 4.2 the said library |
461 | has an obscure bug where the various functions related to time |
462 | (such as time() and gettimeofday()) return broken values, and |
463 | therefore in AIX 4.2 Perl is not linked against the libC_r. |
20d11268 |
464 | |
7fabfece |
465 | =head1 AUTHORS |
20d11268 |
466 | |
3bd76f0a |
467 | H.Merijn Brand <h.m.brand@xs4all.nl> |
7fabfece |
468 | Rainer Tammer <tammer@tammer.net> |
20d11268 |
469 | |
20d11268 |
470 | =head1 DATE |
471 | |
e3c125ff |
472 | Version 0.0.9: 08 Jul 2009 |
20d11268 |
473 | |
474 | =cut |