diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2000-10-16 17:19:49 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-10-18 17:07:44 +0000 |
commit | 20d1126847527cfd6c071cf4de919f6cf371d603 (patch) | |
tree | 32ed25345ccdb4ddeb8cd89153d524dc8f65fc0a /README.aix | |
parent | 7c6ca60203f3f7b2ae472d7f195a624bee68065a (diff) | |
download | perl-20d1126847527cfd6c071cf4de919f6cf371d603.tar.gz |
Re: [ID 20001013.008] perl 5.6.0 on AIX 4.3.2 w/GCC 2.95.2
Message-Id: <20001016151837.9977.H.M.BRAND@hccnet.nl>
p4raw-id: //depot/perl@7360
Diffstat (limited to 'README.aix')
-rw-r--r-- | README.aix | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/README.aix b/README.aix new file mode 100644 index 0000000000..6346a180b2 --- /dev/null +++ b/README.aix @@ -0,0 +1,100 @@ +If you read this file _as_is_, just ignore the funny characters you see. +It is written in the POD format (see pod/perlpod.pod) which is specially +designed to be readable as is. + +=head1 NAME + +README.aix - Perl version 5 on IBM Unix (AIX) systems + +=head1 DESCRIPTION + +This document describes various features of IBM's Unix operating system +(AIX) that will affect how Perl version 5 (hereafter just Perl) is +compiled and/or runs. + +=head2 Compiling Perl 5 on AIX + +When compiling Perl, you must use an ANSI C compiler. AIX does not shif +an ANSI compliant C-compiler with AIX by default, but binary builds of +gcc for AIX are widely available. + +At the moment of writing, AIX supports two different native C compilers, +for which you have to pay: B<xlc> and B<VAC>. If you decide to use eiter +of these two (which is quite a lot easier than using gcc), be sure to +upgrade to the latest available patch level. Currently: + + xlC.C 3.1.4.0 + vac.C 4.4.0.3 (5.0 is already available) + +Perl can be compiled with either IBM's ANSI C compiler or with gcc. The +former is recommended, as not only can it compile Perl with no +difficulty, but also can take advantage of features listed later that +require the use of IBM compiler-specific command-line flags. + +If you decide to use gcc, make sure your installation is recent and +complete, and be sure to read the Perl README file for more gcc-specific +details. + +=head2 OS level + +Before installing the patches to the IBM C-compiler you need to know the +level of patching for the Operating System. IBM's command 'oslevel' will +show the base, but is not allways complete: + + # oslevel + 4.3.0.0 + # lslpp -l | grep 'bos.rte ' + bos.rte 4.3.2.1 COMMITTED Base Operating System Runtime + bos.rte 4.3.2.0 COMMITTED Base Operating System Runtime + # + +=head2 Building Dynamic Extensions on AIX + +AIX supports dynamically loadable libraries (shared libraries). +Shared libraries end with the suffix .a, which is a bit misleading, +cause *all* libraries are shared ;-). + +=head2 The IBM ANSI C Compiler + +All defaults for Configure can be used. + +If you've chosen to use vac 4, be sure to run 4.4.0.3. Older versions +will turn up nasty later on. + +=head2 Using GNU's gcc for building perl + +... ? + +Wait, I'll have to scan perlbug ... + +=head2 Using Large Files with Perl + +... ? + +=head2 Threaded Perl + +... ? + +=head2 64-bit Perl + +... ? + +=head2 GDBM and Threads + +... ? + +=head2 NFS filesystems and utime(2) + +... ? + +=head1 AUTHOR + +H.Merijn Brand <h.m.brand@hccnet.nl> + +Structure copied from README.hpux + +=head1 DATE + +Version 0.0.1: 16-10-2000 + +=cut |