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