Forgotten from #8501.
[p5sagit/p5-mst-13.2.git] / README.os390
CommitLineData
eae55d03 1
8fde188e 2This document is written in pod format hence there are punctuation
eae55d03 3characters in odd places. Do not worry, you've apparently got
8fde188e 4the ASCII->EBCDIC translation worked out correctly. You can read
5more about pod in pod/perlpod.pod or the short summary in the
6INSTALL file.
9d116dd7 7
8fde188e 8=head1 NAME
9
10README.os390 - building and installing Perl for OS/390.
11
12=head1 SYNOPSIS
13
14This document will help you Configure, build, test and install Perl
15on OS/390 Unix System Services.
16
17=head1 DESCRIPTION
18
eae55d03 19This is a fully ported Perl for OS/390 Version 2 Release 3, 5, 6, 7,
208, and 9. It may work on other versions or releases, but those are
21the ones we've tested it on.
8fde188e 22
23You may need to carry out some system configuration tasks before
eae55d03 24running the Configure script for Perl.
8fde188e 25
26=head2 Unpacking
9d116dd7 27
28Gunzip/gzip for OS/390 is discussed at:
29
30 http://www.s390.ibm.com/products/oe/bpxqp1.html
31
32to extract an ASCII tar archive on OS/390, try this:
33
34 pax -o to=IBM-1047,from=ISO8859-1 -r < latest.tar
35
8fde188e 36=head2 Setup and utilities
37
38Be sure that your yacc installation is in place including any necessary
39parser template files. If you have not already done so then be sure to:
40
41 cp /samples/yyparse.c /etc
42
43This may also be a good time to ensure that your /etc/protocol file
44and either your /etc/resolv.conf or /etc/hosts files are in place.
eae55d03 45The IBM document that described such USS system setup issues was
46SC28-1890-07 "OS/390 UNIX System Services Planning", in particular
47Chapter 6 on customizing the OE shell.
8fde188e 48
eae55d03 49GNU make for OS/390, which is required for the build of perl (as well as
50building CPAN modules and extensions), is available from:
9d116dd7 51
52 http://www.mks.com/s390/gnu/index.htm
53
eae55d03 54Some people have reported encountering "Out of memory!" errors while
55trying to build Perl using GNU make binaries. If you encounter such
56trouble then try to download the source code kit and build GNU make
57from source to eliminate any such trouble. You might also find GNU make
58(as well as Perl and Apache) in the red-piece/book "Open Source Software
59for OS/390 UNIX", SG24-5944-00 from IBM.
60
61There is a syntax error in the /usr/include/sys/socket.h header file
62that IBM supplies with USS V2R7, V2R8, and possibly V2R9. The problem with
63the header file is that near the definition of the SO_REUSEPORT constant
64there is a spurious extra '/' character outside of a comment like so:
65
66 #define SO_REUSEPORT 0x0200 /* allow local address & port
67 reuse */ /
68
69You could edit that header yourself to remove that last '/', or you might
70note that Language Environment (LE) APAR PQ39997 describes the problem
71and PTF's UQ46272 and UQ46271 are the (R8 at least) fixes and apply them.
72If left unattended that syntax error will turn up as an inability for Perl
73to build its "Socket" extension.
74
75For successful testing you may need to turn on the sticky bit for your
76world readable /tmp directory if you have not already done so (see man chmod).
77
8fde188e 78=head2 Configure
79
80Once you've unpacked the distribution, run "sh Configure" (see INSTALL
81for a full discussion of the Configure options). There is a "hints" file
82for os390 that specifies the correct values for most things. Some things
83to watch out for include:
84
85=over 4
86
87=item *
88
eae55d03 89A message of the form:
90
91 (I see you are using the Korn shell. Some ksh's blow up on Configure,
92 mainly on older exotic systems. If yours does, try the Bourne shell instead.)
93
94is nothing to worry about at all.
95
96=item *
97
8fde188e 98Some of the parser default template files in /samples are needed in /etc.
99In particular be sure that you at least copy /samples/yyparse.c to /etc
eae55d03 100before running Perl's Configure. This step ensures successful extraction
101of EBCDIC versions of parser files such as perly.c. This has to be done
102before running Configure the first time. If you failed to do so then the
103easiest way to re-Configure Perl is to delete your misconfigured build root
104and re extract the source from the tar ball. If for some reason you do not
105want to do that then, after ensuring that /etc/yyparse.c is properly in place
106run the following commands from within the Perl build directory:
107
108 rm -f y.tab.c y.tab.h
109 yacc -d perly.y
110 mv -f y.tab.c perly.c
111 chmod u+w perly.c
112 sed -e '/^#include "perl\.h"/a\
113 \
114 #define yydebug PL_yydebug\
115 #define yynerrs PL_yynerrs\
116 #define yyerrflag PL_yyerrflag\
117 #define yychar PL_yychar\
118 #define yyval PL_yyval\
119 #define yylval PL_yylval' \
120 -e '/YYSTYPE *yyval;/D' \
121 -e '/YYSTYPE *yylval;/D' \
122 -e '/int yychar,/,/yynerrs;/D' \
123 -e 's/int yydebug = 0;/yydebug = 0;/' \
124 -e 's/[^_]realloc(/PerlMem_realloc(/g' \
125 -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
126 -e 's/y\.tab/perly/g' perly.c >perly.tmp
127 mv -f perly.tmp perly.c
128 mv -f y.tab.h perly.h
129 cd x2p
130 rm -f y.tab.c y.tab.h
131 yacc a2p.y
132 mv -f y.tab.c a2p.c
133 chmod u+w a2p.c
134 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
135 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp
136 mv -f a2p.tmp a2p.c
137 mv -f y.tab.h a2p.h
138 cd ..
139
140There, easy huh? If you find typing all that in difficult then perhaps
141you should reconsider the rm -rf of the perl build directory and
142re extraction of the source tar ball.
8fde188e 143
144=item *
145
eae55d03 146This port doesn't support dynamic loading. Although OS/390 has support
147for DLLs via dllload(), there are some differences that cause problems
148for Perl. (We need a volunteer to write a ext/DynaLoader/dl_dllload.xs
149file).
8fde188e 150
151=item *
9d116dd7 152
eae55d03 153Do not turn on the compiler optimization flag "-O". There is
8fde188e 154a bug in either the optimizer or perl that causes perl to
155not work correctly when the optimizer is on.
9d116dd7 156
8fde188e 157=item *
9d116dd7 158
8fde188e 159Some of the configuration files in /etc used by the
160networking APIs are either missing or have the wrong
161names. In particular, make sure that there's either
eae55d03 162an /etc/resolv.conf or an /etc/hosts, so that
8fde188e 163gethostbyname() works, and make sure that the file
164/etc/proto has been renamed to /etc/protocol (NOT
165/etc/protocols, as used by other Unix systems).
9d116dd7 166
8fde188e 167=back
168
169=head2 Build, test, install
170
171Simply put:
172
173 sh Configure
174 make
175 make test
176
eae55d03 177if everything looks ok (see the next section for test/IVP diagnosis) then:
8fde188e 178
179 make install
180
181this last step may or may not require UID=0 privileges depending
182on how you answered the questions that Configure asked and whether
183or not you have write access to the directories you specified.
184
eae55d03 185=head2 build anomalies
186
187"Out of memory!" messages during the build of Perl are most often fixed
188by re building the GNU make utility for OS/390 from a source code kit.
189
190Another memory limiting item to check is your MAXASSIZE parameter in your
191'SYS1.PARMLIB(BPXPRMxx)' data set (note too that as of V2R8 address space
192limits can be set on a per user ID basis in the USS segment of a RACF
193profile). People have reported successful builds of Perl with MAXASSIZE
194parameters as small as 503316480 (and it may be possible to build Perl
195with a MAXASSIZE smaller than that).
196
197Within USS your /etc/profile or $HOME/.profile may limit your ulimit
198settings. Check that the following command returns reasonable values:
199
200 ulimit -a
201
202To conserve memory you should have your compiler modules loaded into the
203Link Pack Area (LPA/ELPA) rather than in a link list or step lib.
204
205If the c89 compiler complains of syntax errors during the build of the
206Socket extension then be sure to fix the syntax error in the system
207header /usr/include/sys/socket.h.
208
209=head2 testing anomalies
210
211The `make test` step runs a Perl Verification Procedure, usually before
212installation. You might encounter STDERR messages even during a successful
213run of `make test`. Here is a guide to some of the more commonly seen
214anomalies:
215
216=over 4
217
218=item *
219
220A message of the form:
221
222 comp/cpp.............ERROR CBC3191 ./.301989890.c:1 The character $ is not a
223 valid C source character.
224 FSUM3065 The COMPILE step ended with return code 12.
225 FSUM3017 Could not compile .301989890.c. Correct the errors and try again.
226 ok
227
228indicates that the t/comp/cpp.t test of Perl's -P command line switch has
229passed but that the particular invocation of c89 -E in the cpp script does
230not suppress the C compiler check of source code validity.
231
232=item *
233
234A message of the form:
235
236 io/openpid...........CEE5210S The signal SIGHUP was received.
237 CEE5210S The signal SIGHUP was received.
238 CEE5210S The signal SIGHUP was received.
239 ok
240
241indicates that the t/io/openpid.t test of Perl has passed but done so
242with extraneous messages on stderr from CEE.
243
244=item *
245
246A message of the form:
247
248 lib/ftmp-security....File::Temp::_gettemp: Parent directory (/tmp/) is not safe
249 (sticky bit not set when world writable?) at lib/ftmp-security.t line 100
250 File::Temp::_gettemp: Parent directory (/tmp/) is not safe (sticky bit not
251 set when world writable?) at lib/ftmp-security.t line 100
252 ok
253
254indicates a problem with the permissions on your /tmp directory within the HFS.
255To correct that problem issue the command:
256
257 chmod a+t /tmp
258
259from an account with write access to the directory entry for /tmp.
260
261=back
262
8fde188e 263=head2 Usage Hints
64d55c8a 264
9d116dd7 265When using perl on OS/390 please keep in mind that the EBCDIC and ASCII
eae55d03 266character sets are different. See perlebcdic.pod for more on such character
267set issues. Perl builtin functions that may behave differently under
268EBCDIC are also mentioned in the perlport.pod document.
9d116dd7 269
eae55d03 270Open Edition (UNIX System Services) from V2R8 onward does support
271#!/path/to/perl script invocation. There is a PTF available from
272IBM for V2R7 that will allow shell/kernel support for #!. USS
273releases prior to V2R7 did not support the #! means of script invocation.
274If you are running V2R6 or earlier then see:
9d116dd7 275
276 head `whence perldoc`
277
278for an example of how to use the "eval exec" trick to ask the shell to
eae55d03 279have Perl run your scripts on those older releases of Unix System Services.
280
35a77668 281=head2 Floating point anomalies
282
283There appears to be a bug in the floating point implementation on S/390
284systems such that calling int() on the product of a number and a small
285magnitude number is not the same as calling int() on the quotient of
286that number and a large magnitude number. For example, in the following
287Perl code:
288
289 my $x = 100000.0;
290 my $y = int($x * 1e-5) * 1e5; # '0'
291 my $z = int($x / 1e+5) * 1e5; # '100000'
292 print "\$y is $y and \$z is $z\n"; # $y is 0 and $z is 100000
293
294Although one would expect the quantities $y and $z to be the same and equal
295to 100000 they will differ and instead will be 0 and 100000 respectively.
296
297The problem can be further examined in a roughly equivalent C program:
298
299 #include <stdio.h>
300 #include <math.h>
301 main()
302 {
303 double r1,r2;
304 double x = 100000.0;
305 double y = 0.0;
306 double z = 0.0;
307 x = 100000.0 * 1e-5;
308 r1 = modf (x,&y);
309 x = 100000.0 / 1e+5;
310 r2 = modf (x,&z);
311 printf("y is %e and z is %e\n",y*1e5,z*1e5);
312 /* y is 0.000000e+00 and z is 1.000000e+05 (with c89) */
313 }
314
eae55d03 315=head2 Modules and Extensions
316
317Pure pure (that is non xs) modules may be installed via the usual:
318
319 perl Makefile.PL
320 make
321 make test
322 make install
323
324You can also build xs based extensions to Perl for OS/390 but will need
325to follow the instructions in ExtUtils::MakeMaker for building
326statically linked perl binaries. In the simplest configurations building
327a static perl + xs extension boils down to:
9d116dd7 328
eae55d03 329 perl Makefile.PL
330 make
331 make perl
332 make test
333 make install
334 make -f Makefile.aperl inst_perl MAP_TARGET=perl
8fde188e 335
eae55d03 336In most cases people have reported better results with GNU make rather
337than the system's /bin/make program, whether for plain modules or for
338xs based extensions.
8fde188e 339
340=head1 AUTHORS
341
eae55d03 342David Fiander and Peter Prymmer with thanks to Dennis Longnecker
343and William Raffloer for valuable reports, LPAR and PTF feedback.
344Thanks to Mike MacIsaac and Egon Terwedow for SG24-5944-00.
35a77668 345Thanks to Ignasi Roca for pointing out the floating point problems.
8fde188e 346
347=head1 SEE ALSO
348
eae55d03 349L<INSTALL>, L<perlport>, L<perlebcdic>, L<ExtUtils::MakeMaker>.
350
351 http://www.mks.com/s390/gnu/index.htm
352
353 http://www.redbooks.ibm.com/abstracts/sg245944.html
354
355 http://www.s390.ibm.com/products/oe/bpxa1ty1.html#opensrc
356
357 http://www.s390.ibm.com/products/oe/portbk/bpxacenv.html
358
359 http://www.xray.mpe.mpg.de/mailing-lists/perl-mvs/
8fde188e 360
361=head2 Mailing list
362
363The Perl Institute (http://www.perl.org/) maintains a perl-mvs
364mailing list of interest to all folks building and/or
eae55d03 365using perl on all EBCDIC platforms (not just OS/390).
366To subscribe, send a message of:
9d116dd7 367
368 subscribe perl-mvs
369
35a77668 370to majordomo@perl.org. See also:
371
372 http://lists.perl.org/showlist.cgi?name=perl-mvs
373
374There are web archives of the mailing list at:
eae55d03 375
376 http://www.xray.mpe.mpg.de/mailing-lists/perl-mvs/
35a77668 377 http://archive.develooper.com/perl-mvs@perl.org/
9d116dd7 378
8fde188e 379=head1 HISTORY
380
381This document was originally written by David Fiander for the 5.005
382release of Perl.
383
eae55d03 384This document was podified for the 5.005_03 release of Perl 11 March 1999.
385
386Updated 12 November 2000 for the 5.7.1 release of Perl.
8fde188e 387
35a77668 388Updated 15 January 2001 for the 5.7.1 release of Perl.
389
8fde188e 390=cut
eae55d03 391