This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
fix "\x{100}..." =~ tr/.../.../cd
[perl5.git] / README.hpux
CommitLineData
60ed1d8c
GS
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.
f2a260d6
GS
4
5=head1 NAME
6
de2902a6 7perlhpux - Perl version 5 on Hewlett-Packard Unix (HP-UX) systems
f2a260d6
GS
8
9=head1 DESCRIPTION
10
60ed1d8c
GS
11This document describes various features of HP's Unix operating system
12(HP-UX) that will affect how Perl version 5 (hereafter just Perl) is
13compiled and/or runs.
f2a260d6 14
c3c48d5c
JH
15=head2 Using perl as shipped with HP-UX
16
7cd31a2a
MB
17Application release September 2001, HP-UX 11.00 is the first to ship
18with Perl. By the time it was perl-5.6.1 in /opt/perl. The first
19occurrence is on CD 5012-7954 and can be installed using
c3c48d5c 20
af8e01f2 21 swinstall -s /cdrom perl
c3c48d5c 22
34d14706 23assuming you have mounted that CD on /cdrom.
c3c48d5c 24
c8fb9d34
MB
25That build was a portable hppa-1.1 multithread build that supports large
26files compiled with gcc-2.9-hppa-991112.
c3c48d5c 27
c8fb9d34 28If you perform a new installation, then (a newer) Perl will be installed
34d14706 29automatically. Pre-installed HP-UX systems now have more recent versions
c8fb9d34 30of Perl and the updated modules.
c3c48d5c 31
c8fb9d34
MB
32The official (threaded) builds from HP, as they are shipped on the
33Application DVD/CD's are available on
635d4d9b 34L<http://www.software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=PERL>
c8fb9d34 35for both PA-RISC and IPF (Itanium Processor Family). They are built
ddce4f23 36with the HP ANSI-C compiler. Up till 5.8.8 that was done by ActiveState.
d59d3052
MB
37
38To see what version is included on the DVD (assumed here to be mounted
39on /cdrom), issue this command:
40
41 # swlist -s /cdrom perl
42 # perl D.5.8.8.B 5.8.8 Perl Programming Language
e46aa1dd
KW
43 perl.Perl5-32 D.5.8.8.B 32-bit 5.8.8 Perl Programming Language
44 with Extensions
45 perl.Perl5-64 D.5.8.8.B 64-bit 5.8.8 Perl Programming Language
46 with Extensions
7cd31a2a 47
34d14706
MB
48To see what is installed on your system:
49
50 # swlist -R perl
51 # perl E.5.8.8.J Perl Programming Language
e46aa1dd
KW
52 # perl.Perl5-32 E.5.8.8.J 32-bit Perl Programming Language
53 with Extensions
34d14706
MB
54 perl.Perl5-32.PERL-MAN E.5.8.8.J 32-bit Perl Man Pages for IA
55 perl.Perl5-32.PERL-RUN E.5.8.8.J 32-bit Perl Binaries for IA
e46aa1dd
KW
56 # perl.Perl5-64 E.5.8.8.J 64-bit Perl Programming Language
57 with Extensions
34d14706
MB
58 perl.Perl5-64.PERL-MAN E.5.8.8.J 64-bit Perl Man Pages for IA
59 perl.Perl5-64.PERL-RUN E.5.8.8.J 64-bit Perl Binaries for IA
60
48529397
MB
61=head2 Using perl from HP's porting centre
62
34d14706
MB
63HP porting centre tries to keep up with customer demand and release
64updates from the Open Source community. Having precompiled Perl binaries
65available is obvious, though "up-to-date" is something relative. At the
66moment of writing only perl-5.10.1 was available (with 5.16.3 being the
67latest stable release from the porters point of view).
48529397
MB
68
69The HP porting centres are limited in what systems they are allowed
70to port to and they usually choose the two most recent OS versions
34d14706 71available.
48529397
MB
72
73HP has asked the porting centre to move Open Source binaries
74from /opt to /usr/local, so binaries produced since the start
75of July 2002 are located in /usr/local.
76
635d4d9b 77One of HP porting centres URL's is L<http://hpux.connect.org.uk/>
48529397
MB
78The port currently available is built with GNU gcc.
79
34d14706
MB
80=head2 Other prebuilt perl binaries
81
82To get even more recent perl depots for the whole range of HP-UX, visit
83H.Merijn Brand's site at L<http://mirrors.develooper.com/hpux/#Perl>.
84Carefully read the notes to see if the available versions suit your needs.
85
f2a260d6
GS
86=head2 Compiling Perl 5 on HP-UX
87
60ed1d8c
GS
88When compiling Perl, you must use an ANSI C compiler. The C compiler
89that ships with all HP-UX systems is a K&R compiler that should only be
90used to build new kernels.
f2a260d6
GS
91
92Perl can be compiled with either HP's ANSI C compiler or with gcc. The
60ed1d8c
GS
93former is recommended, as not only can it compile Perl with no
94difficulty, but also can take advantage of features listed later that
95require the use of HP compiler-specific command-line flags.
f2a260d6 96
60ed1d8c 97If you decide to use gcc, make sure your installation is recent and
b48c3bfb 98complete, and be sure to read the Perl INSTALL file for more gcc-specific
60ed1d8c 99details.
f2a260d6
GS
100
101=head2 PA-RISC
102
c8fb9d34 103HP's HP9000 Unix systems run on HP's own Precision Architecture
60ed1d8c
GS
104(PA-RISC) chip. HP-UX used to run on the Motorola MC68000 family of
105chips, but any machine with this chip in it is quite obsolete and this
106document will not attempt to address issues for compiling Perl on the
107Motorola chipset.
f2a260d6 108
06c0dd34
MB
109The version of PA-RISC at the time of this document's last update is 2.0,
110which is also the last there will be. HP PA-RISC systems are usually
1a43aa03 111referred to with model description "HP 9000". The last CPU in this series
06c0dd34
MB
112is the PA-8900. Support for PA-RISC architectured machines officially
113ends as shown in the following table:
c8fb9d34
MB
114
115 PA-RISC End-of-Life Roadmap
116 +--------+----------------+----------------+-----------------+
117 | HP9000 | Superdome | PA-8700 | Spring 2011 |
118 | 4-128 | | PA-8800/sx1000 | Summer 2012 |
119 | cores | | PA-8900/sx1000 | 2014 |
120 | | | PA-8900/sx2000 | 2015 |
121 +--------+----------------+----------------+-----------------+
122 | HP9000 | rp7410, rp8400 | PA-8700 | Spring 2011 |
123 | 2-32 | rp7420, rp8420 | PA-8800/sx1000 | 2012 |
124 | cores | rp7440, rp8440 | PA-8900/sx1000 | Autumn 2013 |
125 | | | PA-8900/sx2000 | 2015 |
126 +--------+----------------+----------------+-----------------+
127 | HP9000 | rp44x0 | PA-8700 | Spring 2011 |
128 | 1-8 | | PA-8800/rp44x0 | 2012 |
129 | cores | | PA-8900/rp44x0 | 2014 |
130 +--------+----------------+----------------+-----------------+
131 | HP9000 | rp34x0 | PA-8700 | Spring 2011 |
132 | 1-4 | | PA-8800/rp34x0 | 2012 |
133 | cores | | PA-8900/rp34x0 | 2014 |
134 +--------+----------------+----------------+-----------------+
f2a260d6 135
635d4d9b 136From L<http://www.hp.com/products1/evolution/9000/faqs.html>
06c0dd34 137
e59066d8 138 The last order date for HP 9000 systems was December 31, 2008.
06c0dd34 139
2608e3b7
MB
140A complete list of models at the time the OS was built is in the file
141/usr/sam/lib/mo/sched.models. The first column corresponds to the last
142part of the output of the "model" command. The second column is the
143PA-RISC version and the third column is the exact chip type used.
144(Start browsing at the bottom to prevent confusion ;-)
145
af8e01f2
MB
146 # model
147 9000/800/L1000-44
148 # grep L1000-44 /usr/sam/lib/mo/sched.models
149 L1000-44 2.0 PA8500
150
151=head2 Portability Between PA-RISC Versions
152
153An executable compiled on a PA-RISC 2.0 platform will not execute on a
154PA-RISC 1.1 platform, even if they are running the same version of
155HP-UX. If you are building Perl on a PA-RISC 2.0 platform and want that
156Perl to also run on a PA-RISC 1.1, the compiler flags +DAportable and
157+DS32 should be used.
158
159It is no longer possible to compile PA-RISC 1.0 executables on either
160the PA-RISC 1.1 or 2.0 platforms. The command-line flags are accepted,
161but the resulting executable will not run when transferred to a PA-RISC
1621.0 system.
2608e3b7 163
f2a260d6
GS
164=head2 PA-RISC 1.0
165
166The original version of PA-RISC, HP no longer sells any system with this chip.
167
13e84f2c 168The following systems contained PA-RISC 1.0 chips:
f2a260d6 169
af8e01f2
MB
170 600, 635, 645, 808, 815, 822, 825, 832, 834, 835, 840, 842, 845, 850,
171 852, 855, 860, 865, 870, 890
f2a260d6
GS
172
173=head2 PA-RISC 1.1
174
175An upgrade to the PA-RISC design, it shipped for many years in many different
176system.
177
178The following systems contain with PA-RISC 1.1 chips:
179
af8e01f2
MB
180 705, 710, 712, 715, 720, 722, 725, 728, 730, 735, 742, 743, 744, 745,
181 747, 750, 755, 770, 777, 778, 779, 800, 801, 803, 806, 807, 809, 811,
182 813, 816, 817, 819, 821, 826, 827, 829, 831, 837, 839, 841, 847, 849,
183 851, 856, 857, 859, 867, 869, 877, 887, 891, 892, 897, A180, A180C,
184 B115, B120, B132L, B132L+, B160L, B180L, C100, C110, C115, C120,
185 C160L, D200, D210, D220, D230, D250, D260, D310, D320, D330, D350,
186 D360, D410, DX0, DX5, DXO, E25, E35, E45, E55, F10, F20, F30, G30,
187 G40, G50, G60, G70, H20, H30, H40, H50, H60, H70, I30, I40, I50, I60,
188 I70, J200, J210, J210XC, K100, K200, K210, K220, K230, K400, K410,
189 K420, S700i, S715, S744, S760, T500, T520
f2a260d6
GS
190
191=head2 PA-RISC 2.0
192
60ed1d8c
GS
193The most recent upgrade to the PA-RISC design, it added support for
19464-bit integer data.
f2a260d6 195
60ed1d8c 196As of the date of this document's last update, the following systems
d464cda8 197contain PA-RISC 2.0 chips:
f2a260d6 198
af8e01f2
MB
199 700, 780, 781, 782, 783, 785, 802, 804, 810, 820, 861, 871, 879, 889,
200 893, 895, 896, 898, 899, A400, A500, B1000, B2000, C130, C140, C160,
201 C180, C180+, C180-XP, C200+, C400+, C3000, C360, C3600, CB260, D270,
202 D280, D370, D380, D390, D650, J220, J2240, J280, J282, J400, J410,
203 J5000, J5500XM, J5600, J7000, J7600, K250, K260, K260-EG, K270, K360,
204 K370, K380, K450, K460, K460-EG, K460-XP, K470, K570, K580, L1000,
205 L2000, L3000, N4000, R380, R390, SD16000, SD32000, SD64000, T540,
206 T600, V2000, V2200, V2250, V2500, V2600
1a4e8251 207
b20ef1a8
MB
208Just before HP took over Compaq, some systems were renamed. the link
209that contained the explanation is dead, so here's a short summary:
08c5bf6e 210
af8e01f2
MB
211 HP 9000 A-Class servers, now renamed HP Server rp2400 series.
212 HP 9000 L-Class servers, now renamed HP Server rp5400 series.
213 HP 9000 N-Class servers, now renamed HP Server rp7400.
08c5bf6e 214
2d99a181
MB
215 rp2400, rp2405, rp2430, rp2450, rp2470, rp3410, rp3440, rp4410,
216 rp4440, rp5400, rp5405, rp5430, rp5450, rp5470, rp7400, rp7405,
c8fb9d34 217 rp7410, rp7420, rp7440, rp8400, rp8420, rp8440, Superdome
b20ef1a8
MB
218
219The current naming convention is:
220
af8e01f2
MB
221 aadddd
222 ||||`+- 00 - 99 relative capacity & newness (upgrades, etc.)
223 |||`--- unique number for each architecture to ensure different
224 ||| systems do not have the same numbering across
225 ||| architectures
226 ||`---- 1 - 9 identifies family and/or relative positioning
227 ||
228 |`----- c = ia32 (cisc)
229 | p = pa-risc
230 | x = ia-64 (Itanium & Itanium 2)
231 | h = housing
232 `------ t = tower
233 r = rack optimized
234 s = super scalable
235 b = blade
236 sa = appliance
13e84f2c 237
c8fb9d34 238=head2 Itanium Processor Family (IPF) and HP-UX
13e84f2c
JH
239
240HP-UX also runs on the new Itanium processor. This requires the use
7cd31a2a 241of a different version of HP-UX (currently 11.23 or 11i v2), and with
b20ef1a8
MB
242the exception of a few differences detailed below and in later sections,
243Perl should compile with no problems.
13e84f2c
JH
244
245Although PA-RISC binaries can run on Itanium systems, you should not
246attempt to use a PA-RISC version of Perl on an Itanium system. This is
247because shared libraries created on an Itanium system cannot be loaded
248while running a PA-RISC executable.
f2a260d6 249
1a43aa03 250HP Itanium 2 systems are usually referred to with model description
7cd31a2a
MB
251"HP Integrity".
252
3e098ebc 253=head2 Itanium, Itanium 2 & Madison 6
af8e01f2 254
c8fb9d34 255HP also ships servers with the 128-bit Itanium processor(s). The cx26x0
3e098ebc
MB
256is told to have Madison 6. As of the date of this document's last update,
257the following systems contain Itanium or Itanium 2 chips (this is likely
258to be out of date):
af8e01f2 259
34d14706
MB
260 BL60p, BL860c, BL870c, BL890c, cx2600, cx2620, rx1600, rx1620, rx2600,
261 rx2600hptc, rx2620, rx2660, rx2800, rx3600, rx4610, rx4640, rx5670,
913ba1b7
MB
262 rx6600, rx7420, rx7620, rx7640, rx8420, rx8620, rx8640, rx9610,
263 sx1000, sx2000
af8e01f2
MB
264
265To see all about your machine, type
266
267 # model
268 ia64 hp server rx2600
269 # /usr/contrib/bin/machinfo
270
d59d3052
MB
271=head2 HP-UX versions
272
273Not all architectures (PA = PA-RISC, IPF = Itanium Processor Family)
274support all versions of HP-UX, here is a short list
275
34d14706
MB
276 HP-UX version Kernel Architecture End-of-factory support
277 ------------- ------ ------------ ----------------------------------
278 10.20 32 bit PA 30-Jun-2003
279 11.00 32/64 PA 31-Dec-2006
280 11.11 11i v1 32/64 PA 31-Dec-2015
281 11.22 11i v2 64 IPF 30-Apr-2004
282 11.23 11i v2 64 PA & IPF 31-Dec-2015
283 11.31 11i v3 64 PA & IPF 31-Dec-2020 (PA) 31-Dec-2022 (IPF)
d59d3052
MB
284
285See for the full list of hardware/OS support and expected end-of-life
635d4d9b 286L<http://www.hp.com/go/hpuxservermatrix>
d59d3052 287
f2a260d6
GS
288=head2 Building Dynamic Extensions on HP-UX
289
290HP-UX supports dynamically loadable libraries (shared libraries).
13e84f2c
JH
291Shared libraries end with the suffix .sl. On Itanium systems,
292they end with the suffix .so.
f2a260d6 293
60ed1d8c
GS
294Shared libraries created on a platform using a particular PA-RISC
295version are not usable on platforms using an earlier PA-RISC version by
296default. However, this backwards compatibility may be enabled using the
297same +DAportable compiler flag (with the same PA-RISC 1.0 caveat
298mentioned above).
f2a260d6 299
13e84f2c
JH
300Shared libraries created on an Itanium platform cannot be loaded on
301a PA-RISC platform. Shared libraries created on a PA-RISC platform
302can only be loaded on an Itanium platform if it is a PA-RISC executable
303that is attempting to load the PA-RISC library. A PA-RISC shared
304library cannot be loaded into an Itanium executable nor vice-versa.
305
f2a260d6
GS
306To create a shared library, the following steps must be performed:
307
af8e01f2
MB
308 1. Compile source modules with +z or +Z flag to create a .o module
309 which contains Position-Independent Code (PIC). The linker will
310 tell you in the next step if +Z was needed.
311 (For gcc, the appropriate flag is -fpic or -fPIC.)
f2a260d6 312
af8e01f2
MB
313 2. Link the shared library using the -b flag. If the code calls
314 any functions in other system libraries (e.g., libm), it must
315 be included on this line.
f2a260d6
GS
316
317(Note that these steps are usually handled automatically by the extension's
318Makefile).
319
320If these dependent libraries are not listed at shared library creation
321time, you will get fatal "Unresolved symbol" errors at run time when the
322library is loaded.
323
a75f7dba 324You may create a shared library that refers to another library, which
60ed1d8c
GS
325may be either an archive library or a shared library. If this second
326library is a shared library, this is called a "dependent library". The
327dependent library's name is recorded in the main shared library, but it
328is not linked into the shared library. Instead, it is loaded when the
329main shared library is loaded. This can cause problems if you build an
330extension on one system and move it to another system where the
331libraries may not be located in the same place as on the first system.
f2a260d6
GS
332
333If the referred library is an archive library, then it is treated as a
334simple collection of .o modules (all of which must contain PIC). These
335modules are then linked into the shared library.
336
60ed1d8c
GS
337Note that it is okay to create a library which contains a dependent
338library that is already linked into perl.
f2a260d6 339
42be3f00
JH
340Some extensions, like DB_File and Compress::Zlib use/require prebuilt
341libraries for the perl extensions/modules to work. If these libraries
3853ea39
JH
342are built using the default configuration, it might happen that you
343run into an error like "invalid loader fixup" during load phase.
344HP is aware of this problem. Search the HP-UX cxx-dev forums for
345discussions about the subject. The short answer is that B<everything>
346(all libraries, everything) must be compiled with C<+z> or C<+Z> to be
b48c3bfb
AD
347PIC (position independent code). (For gcc, that would be
348C<-fpic> or C<-fPIC>). In HP-UX 11.00 or newer the linker
3853ea39 349error message should tell the name of the offending object file.
42be3f00
JH
350
351A more general approach is to intervene manually, as with an example for
352the DB_File module, which requires SleepyCat's libdb.sl:
353
af8e01f2
MB
354 # cd .../db-3.2.9/build_unix
355 # vi Makefile
356 ... add +Z to all cflags to create shared objects
357 CFLAGS= -c $(CPPFLAGS) +Z -Ae +O2 +Onolimit \
c8fb9d34 358 -I/usr/local/include -I/usr/include/X11R6
af8e01f2 359 CXXFLAGS= -c $(CPPFLAGS) +Z -Ae +O2 +Onolimit \
c8fb9d34 360 -I/usr/local/include -I/usr/include/X11R6
af8e01f2
MB
361
362 # make clean
363 # make
364 # mkdir tmp
365 # cd tmp
366 # ar x ../libdb.a
367 # ld -b -o libdb-3.2.sl *.o
368 # mv libdb-3.2.sl /usr/local/lib
369 # rm *.o
370 # cd /usr/local/lib
371 # rm -f libdb.sl
372 # ln -s libdb-3.2.sl libdb.sl
373
374 # cd .../DB_File-1.76
375 # make distclean
376 # perl Makefile.PL
377 # make
378 # make test
379 # make install
380
381As of db-4.2.x it is no longer needed to do this by hand. Sleepycat
382has changed the configuration process to add +z on HP-UX automatically.
383
384 # cd .../db-4.2.25/build_unix
6a555251 385 # env CFLAGS=+DD64 LDFLAGS=+DD64 ../dist/configure
af8e01f2
MB
386
387should work to generate 64bit shared libraries for HP-UX 11.00 and 11i.
42be3f00 388
13e84f2c
JH
389It is no longer possible to link PA-RISC 1.0 shared libraries (even
390though the command-line flags are still present).
391
392PA-RISC and Itanium object files are not interchangeable. Although
393you may be able to use ar to create an archive library of PA-RISC
394object files on an Itanium system, you cannot link against it using
395an Itanium link editor.
f2a260d6
GS
396
397=head2 The HP ANSI C Compiler
398
60ed1d8c
GS
399When using this compiler to build Perl, you should make sure that the
400flag -Aa is added to the cpprun and cppstdin variables in the config.sh
42be3f00
JH
401file (though see the section on 64-bit perl below). If you are using a
402recent version of the Perl distribution, these flags are set automatically.
f2a260d6 403
6a555251
MB
404Even though HP-UX 10.20 and 11.00 are not actively maintained by HP
405anymore, updates for the HP ANSI C compiler are still available from
406time to time, and it might be advisable to see if updates are applicable.
407At the moment of writing, the latests available patches for 11.00 that
408should be applied are PHSS_35098, PHSS_35175, PHSS_35100, PHSS_33036,
409and PHSS_33902). If you have a SUM account, you can use it to search
410for updates/patches. Enter "ANSI" as keyword.
411
2be3a552
MB
412=head2 The GNU C Compiler
413
414When you are going to use the GNU C compiler (gcc), and you don't have
415gcc yet, you can either build it yourself from the sources (available
464a08e7 416from e.g. L<http://gcc.gnu.org/mirrors.html>) or fetch
34d14706
MB
417a prebuilt binary from the HP porting center
418at L<http://hpux.connect.org.uk/hppd/cgi-bin/search?term=gcc&Search=Search>
419or from the DSPP (you need to be a member) at
420L<http://h21007.www2.hp.com/portal/site/dspp/menuitem.863c3e4cbcdc3f3515b49c108973a801?ciid=2a08725cc2f02110725cc2f02110275d6e10RCRD&jumpid=reg_r1002_usen_c-001_title_r0001>
08d7a6b2
LB
421(Browse through the list, because there are often multiple versions of
422the same package available).
2be3a552 423
34d14706 424Most mentioned distributions are depots. H.Merijn Brand has made prebuilt
635d4d9b 425gcc binaries available on L<http://mirrors.develooper.com/hpux/> and/or
34d14706
MB
426L<http://www.cmve.net/~merijn/> for HP-UX 10.20 (only 32bit), HP-UX 11.00,
427HP-UX 11.11 (HP-UX 11i v1), and HP-UX 11.23 (HP-UX 11i v2 PA-RISC) in both
42832- and 64-bit versions. For HP-UX 11.23 IPF and HP-UX 11.31 IPF depots are
429available too. The IPF versions do not need two versions of GNU gcc.
b20ef1a8
MB
430
431On PA-RISC you need a different compiler for 32-bit applications and for
43264-bit applications. On PA-RISC, 32-bit objects and 64-bit objects do
fb1ee0ec 433not mix. Period. There is no different behaviour for HP C-ANSI-C or GNU
b20ef1a8 434gcc. So if you require your perl binary to use 64-bit libraries, like
1d69df2b 435Oracle-64bit, you MUST build a 64-bit perl.
b20ef1a8 436
1d69df2b
MHM
437Building a 64-bit capable gcc on PA-RISC from source is possible only when
438you have the HP C-ANSI C compiler or an already working 64-bit binary of
b20ef1a8
MB
439gcc available. Best performance for perl is achieved with HP's native
440compiler.
2be3a552 441
a83b6f46 442=head2 Using Large Files with Perl on HP-UX
f2a260d6 443
60ed1d8c
GS
444Beginning with HP-UX version 10.20, files larger than 2GB (2^31 bytes)
445may be created and manipulated. Three separate methods of doing this
446are available. Of these methods, the best method for Perl is to compile
447using the -Duselargefiles flag to Configure. This causes Perl to be
448compiled using structures and functions in which these are 64 bits wide,
449rather than 32 bits wide. (Note that this will only work with HP's ANSI
450C compiler. If you want to compile Perl using gcc, you will have to get
aca48073 451a version of the compiler that supports 64-bit operations. See above for
f3e4a94e 452where to find it.)
60ed1d8c
GS
453
454There are some drawbacks to this approach. One is that any extension
455which calls any file-manipulating C function will need to be recompiled
f74a9bd3
GS
456(just follow the usual "perl Makefile.PL; make; make test; make install"
457procedure).
60ed1d8c 458
d66be8f9 459The list of functions that will need to recompiled is:
c8fb9d34
MB
460 creat, fgetpos, fopen,
461 freopen, fsetpos, fstat,
462 fstatvfs, fstatvfsdev, ftruncate,
463 ftw, lockf, lseek,
464 lstat, mmap, nftw,
465 open, prealloc, stat,
466 statvfs, statvfsdev, tmpfile,
467 truncate, getrlimit, setrlimit
f2a260d6 468
60ed1d8c
GS
469Another drawback is only valid for Perl versions before 5.6.0. This
470drawback is that the seek and tell functions (both the builtin version
471and POSIX module version) will not perform correctly.
472
473It is strongly recommended that you use this flag when you run
474Configure. If you do not do this, but later answer the question about
475large files when Configure asks you, you may get a configuration that
476cannot be compiled, or that does not function as expected.
477
a83b6f46 478=head2 Threaded Perl on HP-UX
f2a260d6 479
c7d9b096
JH
480It is possible to compile a version of threaded Perl on any version of
481HP-UX before 10.30, but it is strongly suggested that you be running on
f2a260d6
GS
482HP-UX 11.00 at least.
483
60ed1d8c
GS
484To compile Perl with threads, add -Dusethreads to the arguments of
485Configure. Verify that the -D_POSIX_C_SOURCE=199506L compiler flag is
486automatically added to the list of flags. Also make sure that -lpthread
42be3f00
JH
487is listed before -lc in the list of libraries to link Perl with. The
488hints provided for HP-UX during Configure will try very hard to get
489this right for you.
f2a260d6 490
210b36aa 491HP-UX versions before 10.30 require a separate installation of a POSIX
c7d9b096
JH
492threads library package. Two examples are the HP DCE package, available
493on "HP-UX Hardware Extensions 3.0, Install and Core OS, Release 10.20,
494April 1999 (B3920-13941)" or the Freely available PTH package, available
635d4d9b 495on H.Merijn's site (L<http://mirrors.develooper.com/hpux/>). The use of PTH
30026e36 496will be unsupported in perl-5.12 and up and is rather buggy in 5.11.x.
c7d9b096 497
fa01be49
MB
498If you are going to use the HP DCE package, the library used for threading
499is /usr/lib/libcma.sl, but there have been multiple updates of that
500library over time. Perl will build with the first version, but it
501will not pass the test suite. Older Oracle versions might be a compelling
8e4bcd96 502reason not to update that library, otherwise please find a newer version
fa01be49
MB
503in one of the following patches: PHSS_19739, PHSS_20608, or PHSS_23672
504
505reformatted output:
506
507 d3:/usr/lib 106 > what libcma-*.1
508 libcma-00000.1:
509 HP DCE/9000 1.5 Module: libcma.sl (Export)
510 Date: Apr 29 1996 22:11:24
511 libcma-19739.1:
512 HP DCE/9000 1.5 PHSS_19739-40 Module: libcma.sl (Export)
513 Date: Sep 4 1999 01:59:07
514 libcma-20608.1:
515 HP DCE/9000 1.5 PHSS_20608 Module: libcma.1 (Export)
516 Date: Dec 8 1999 18:41:23
517 libcma-23672.1:
518 HP DCE/9000 1.5 PHSS_23672 Module: libcma.1 (Export)
519 Date: Apr 9 2001 10:01:06
520 d3:/usr/lib 107 >
521
b204bbd5
MB
522If you choose for the PTH package, use swinstall to install pth in
523the default location (/opt/pth), and then make symbolic links to the
524libraries from /usr/lib
525
526 # cd /usr/lib
527 # ln -s /opt/pth/lib/libpth* .
528
2d99a181
MB
529For building perl to support Oracle, it needs to be linked with libcl
530and libpthread. So even if your perl is an unthreaded build, these
531libraries might be required. See "Oracle on HP-UX" below.
fa01be49 532
a83b6f46 533=head2 64-bit Perl on HP-UX
f2a260d6 534
60ed1d8c
GS
535Beginning with HP-UX 11.00, programs compiled under HP-UX can take
536advantage of the LP64 programming environment (LP64 means Longs and
b204bbd5
MB
537Pointers are 64 bits wide), in which scalar variables will be able
538to hold numbers larger than 2^32 with complete precision. Perl has
539proven to be consistent and reliable in 64bit mode since 5.8.1 on
540all HP-UX 11.xx.
f2a260d6 541
70dff5ba 542As of the date of this document, Perl is fully 64-bit compliant on
b20ef1a8 543HP-UX 11.00 and up for both cc- and gcc builds. If you are about to
1d69df2b 544build a 64-bit perl with GNU gcc, please read the gcc section carefully.
f2a260d6 545
b204bbd5
MB
546Should a user have the need for compiling Perl in the LP64 environment,
547use the -Duse64bitall flag to Configure. This will force Perl to be
548compiled in a pure LP64 environment (with the +DD64 flag for HP C-ANSI-C,
549with no additional options for GNU gcc 64-bit on PA-RISC, and with
550-mlp64 for GNU gcc on Itanium).
b20ef1a8 551If you want to compile Perl using gcc, you will have to get a version of
aca48073 552the compiler that supports 64-bit operations.)
f74a9bd3 553
60ed1d8c
GS
554You can also use the -Duse64bitint flag to Configure. Although there
555are some minor differences between compiling Perl with this flag versus
556the -Duse64bitall flag, they should not be noticeable from a Perl user's
b204bbd5
MB
557perspective. When configuring -Duse64bitint using a 64bit gcc on a
558pa-risc architecture, -Duse64bitint is silently promoted to -Duse64bitall.
f74a9bd3 559
60ed1d8c
GS
560In both cases, it is strongly recommended that you use these flags when
561you run Configure. If you do not use do this, but later answer the
562questions about 64-bit numbers when Configure asks you, you may get a
563configuration that cannot be compiled, or that does not function as
564expected.
f74a9bd3 565
5df8692c
MB
566=head2 Oracle on HP-UX
567
568Using perl to connect to Oracle databases through DBI and DBD::Oracle
569has caused a lot of people many headaches. Read README.hpux in the
570DBD::Oracle for much more information. The reason to mention it here
571is that Oracle requires a perl built with libcl and libpthread, the
572latter even when perl is build without threads. Building perl using
573all defaults, but still enabling to build DBD::Oracle later on can be
574achieved using
575
576 Configure -A prepend:libswanted='cl pthread ' ...
577
191078c7
MB
578Do not forget the space before the trailing quote.
579
580Also note that this does not (yet) work with all configurations,
1d69df2b 581it is known to fail with 64-bit versions of GCC.
5df8692c 582
a83b6f46 583=head2 GDBM and Threads on HP-UX
d66be8f9 584
1802498b
MB
585If you attempt to compile Perl with (POSIX) threads on an 11.X system
586and also link in the GDBM library, then Perl will immediately core dump
587when it starts up. The only workaround at this point is to relink the
588GDBM library under 11.X, then relink it into Perl.
589
590the error might show something like:
591
592Pthread internal error: message: __libc_reinit() failed, file: ../pthreads/pthread.c, line: 1096
593Return Pointer is 0xc082bf33
594sh: 5345 Quit(coredump)
595
596and Configure will give up.
d66be8f9 597
a83b6f46 598=head2 NFS filesystems and utime(2) on HP-UX
d66be8f9
GS
599
600If you are compiling Perl on a remotely-mounted NFS filesystem, the test
60ed1d8c
GS
601io/fs.t may fail on test #18. This appears to be a bug in HP-UX and no
602fix is currently available.
d66be8f9 603
a83b6f46 604=head2 HP-UX Kernel Parameters (maxdsiz) for Compiling Perl
13e84f2c
JH
605
606By default, HP-UX comes configured with a maximum data segment size of
60764MB. This is too small to correctly compile Perl with the maximum
608optimization levels. You can increase the size of the maxdsiz kernel
609parameter through the use of SAM.
610
611When using the GUI version of SAM, click on the Kernel Configuration
612icon, then the Configurable Parameters icon. Scroll down and select
613the maxdsiz line. From the Actions menu, select the Modify Configurable
614Parameter item. Insert the new formula into the Formula/Value box.
615Then follow the instructions to rebuild your kernel and reboot your
616system.
617
618In general, a value of 256MB (or "256*1024*1024") is sufficient for
619Perl to compile at maximum optimization.
620
1081c3b9
JH
621=head1 nss_delete core dump from op/pwent or op/grent
622
623You may get a bus error core dump from the op/pwent or op/grent
624tests. If compiled with -g you will see a stack trace much like
625the following:
626
627 #0 0xc004216c in () from /usr/lib/libc.2
628 #1 0xc00d7550 in __nss_src_state_destr () from /usr/lib/libc.2
629 #2 0xc00d7768 in __nss_src_state_destr () from /usr/lib/libc.2
48529397
MB
630 #3 0xc00d78a8 in nss_delete () from /usr/lib/libc.2
631 #4 0xc01126d8 in endpwent () from /usr/lib/libc.2
1081c3b9
JH
632 #5 0xd1950 in Perl_pp_epwent () from ./perl
633 #6 0x94d3c in Perl_runops_standard () from ./perl
634 #7 0x23728 in S_run_body () from ./perl
635 #8 0x23428 in perl_run () from ./perl
636 #9 0x2005c in main () from ./perl
637
638The key here is the C<nss_delete> call. One workaround for this
639bug seems to be to create add to the file F</etc/nsswitch.conf>
640(at least) the following lines
641
48529397 642 group: files
1081c3b9
JH
643 passwd: files
644
645Whether you are using NIS does not matter. Amazingly enough,
3a1825b5 646the same bug also affects Solaris.
1081c3b9 647
cfcf4a24
MB
648=head1 error: pasting ")" and "l" does not give a valid preprocessing token
649
650There seems to be a broken system header file in HP-UX 11.00 that
651breaks perl building in 32bit mode with GNU gcc-4.x causing this
652error. The same file for HP-UX 11.11 (even though the file is older)
653does not show this failure, and has the correct definition, so the
654best fix is to patch the header to match:
655
656 --- /usr/include/inttypes.h 2001-04-20 18:42:14 +0200
657 +++ /usr/include/inttypes.h 2000-11-14 09:00:00 +0200
658 @@ -72,7 +72,7 @@
659 #define UINT32_C(__c) __CONCAT_U__(__c)
660 #else /* __LP64 */
661 #define INT32_C(__c) __CONCAT__(__c,l)
662 -#define UINT32_C(__c) __CONCAT__(__CONCAT_U__(__c),l)
663 +#define UINT32_C(__c) __CONCAT__(__c,ul)
664 #endif /* __LP64 */
665
666 #define INT64_C(__c) __CONCAT_L__(__c,l)
667
4b2fb104
JH
668=head1 Redeclaration of "sendpath" with a different storage class specifier
669
40d81d36
JH
670The following compilation warnings may happen in HP-UX releases
671earlier than 11.31 but are harmless:
4b2fb104 672
e46aa1dd
KW
673 cc: "/usr/include/sys/socket.h", line 535: warning 562:
674 Redeclaration of "sendfile" with a different storage class
675 specifier: "sendfile" will have internal linkage.
676 cc: "/usr/include/sys/socket.h", line 536: warning 562:
677 Redeclaration of "sendpath" with a different storage class
678 specifier: "sendpath" will have internal linkage.
4b2fb104
JH
679
680They seem to be caused by broken system header files, and also other
40d81d36
JH
681open source projects are seeing them. The following HP-UX patches
682should make the warnings go away:
683
684 CR JAGae12001: PHNE_27063
685 Warning 562 on sys/socket.h due to redeclaration of prototypes
686
687 CR JAGae16787:
688 Warning 562 from socket.h sendpath/sendfile -D_FILEFFSET_BITS=64
689
690 CR JAGae73470 (11.23)
691 ER: Compiling socket.h with cc -D_FILEFFSET_BITS=64 warning 267/562
cfcf4a24 692
bbe83729
MB
693=head1 Miscellaneous
694
695HP-UX 11 Y2K patch "Y2K-1100 B.11.00.B0125 HP-UX Core OS Year 2000
696Patch Bundle" has been reported to break the io/fs test #18 which
697tests whether utime() can change timestamps. The Y2K patch seems to
698break utime() so that over NFS the timestamps do not get changed
699(on local filesystems utime() still works). This has probably been
700fixed on your system by now.
701
f2a260d6
GS
702=head1 AUTHOR
703
3bd76f0a 704H.Merijn Brand <h.m.brand@xs4all.nl>
bbe83729 705Jeff Okamoto <okamoto@corp.hp.com>
f2a260d6
GS
706
707With much assistance regarding shared libraries from Marc Sabatella.
708
f2a260d6 709=cut