This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[patch] -Wall
[perl5.git] / hints / os390.sh
CommitLineData
86339dc9 1# hints/os390.sh
9d116dd7
JH
2#
3# OS/390 hints by David J. Fiander <davidf@mks.com>
4#
86339dc9 5# OS/390 OpenEdition Release 3 Mon Sep 22 1997 thanks to:
ac9901e0
PP
6#
7# John Goodyear <johngood@us.ibm.com>
86339dc9
TB
8# John Pfuntner <pfuntner@vnet.ibm.com>
9# Len Johnson <lenjay@ibm.net>
10# Bud Huff <BAHUFF@us.oracle.com>
11# Peter Prymmer <pvhp@forte.com>
12# Andy Dougherty <doughera@lafcol.lafayette.edu>
13# Tim Bunce <Tim.Bunce@ig.co.uk>
14#
15# as well as the authors of the aix.sh file
16#
17
9d116dd7 18# To get ANSI C, we need to use c89, and ld doesn't exist
5f912e1c
PP
19# You can override this with Configure -Dcc=gcc -Dld=ld.
20case "$cc" in
21'') cc='c89' ;;
22esac
23case "$ld" in
24'') ld='c89' ;;
25esac
26
27# -DMAXSIG=38 maximum signal number
28# -DOEMVS is used in place of #ifdef __MVS__ in certain places.
29# -D_OE_SOCKETS alters system headers.
30# -D_XOPEN_SOURCE_EXTENDEDA alters system headers.
31# c89 hides most of the useful header stuff, _ALL_SOURCE turns it on again.
9d116dd7 32# YYDYNAMIC ensures that the OS/390 yacc generated parser is reentrant.
5f912e1c
PP
33# -DEBCDIC should come from Configure and need not be mentioned here.
34# Prepend your favorites with Configure -Dccflags=your_favorites
35case "$ccflags" in
36'') ccflags='-DMAXSIG=38 -DOEMVS -D_OE_SOCKETS -D_XOPEN_SOURCE_EXTENDED -D_ALL_SOURCE -DYYDYNAMIC' ;;
37*) ccflags="$ccflags -DMAXSIG=38 -DOEMVS -D_OE_SOCKETS -D_XOPEN_SOURCE_EXTENDED -D_ALL_SOURCE -DYYDYNAMIC" ;;
38esac
39
40# Turning on optimization breaks perl.
41# You can override this with Configure -Doptimize='-O' or somesuch.
42case "$optimize" in
43'') optimize='none' ;;
44esac
45
5f912e1c
PP
46# To link via definition side decks we need the dll option
47# You can override this with Configure -Ucccdlflags or somesuch.
48case "$cccdlflags" in
ac9901e0 49'') cccdlflags='-W 0,dll' ;;
5f912e1c
PP
50esac
51
5f912e1c
PP
52case "$so" in
53'') so='a' ;;
54esac
9d116dd7 55
5f912e1c
PP
56case "$alignbytes" in
57'') alignbytes=8 ;;
58esac
9d116dd7 59
5f912e1c
PP
60case "$usemymalloc" in
61'') usemymalloc='n' ;;
62esac
9d116dd7
JH
63
64# On OS/390, libc.a doesn't really hold anything at all,
65# so running nm on it is pretty useless.
5f912e1c
PP
66# You can override this with Configure -Dusenm.
67case "$usenm" in
68'') usenm='false' ;;
69esac
9d116dd7 70
5f912e1c 71# Dynamic loading doesn't work on OS/390 quite yet.
ac9901e0
PP
72# However the easiest way to experiment with dynamic loading is with:
73# Configure -Dusedl
74# You can even override some of this with things like:
75# Configure -Dusedl -Ddlext=so -Ddlsrc=dl_dllload.xs.
5f912e1c 76case "$usedl" in
ac9901e0
PP
77'')
78 usedl='n'
79 case "$dlext" in
80 '') dlext='none' ;;
81 esac
82 ;;
83define)
84 case "$useshrplib" in
85 '') useshrplib='true' ;;
86 esac
ac9901e0
PP
87 case "$dlsrc" in
88 '') dlsrc='dl_dllload.xs' ;;
89 esac
f2766b05
PP
90 # For performance use 'so' at or beyond v2.8, 'dll' for 2.7 and prior versions
91 case "`uname -v`x`uname -r`" in
92 02x0[89].*|02x1[0-9].*|[0-9][3-9]x*)
93 so='so'
94 case "$dlext" in
95 '') dlext='so' ;;
96 esac
97 ;;
98 *)
99 so='dll'
100 case "$dlext" in
101 '') dlext='dll' ;;
102 esac
103 ;;
104 esac
105 libperl="libperl.$so"
ac9901e0
PP
106 ccflags="$ccflags -D_SHR_ENVIRON -DPERL_EXTERNAL_GLOB -Wc,dll"
107 cccdlflags='-c -Wc,dll,EXPORTALL'
108 # You might add '-Wl,EDIT=NO' to get rid of the symbol
f2766b05
PP
109 # information at the end of the executable (=> smaller binaries).
110 # Do so with -Dldflags='-Wl,EDIT=NO'.
111 case "$ldflags" in
112 '') ldflags='' ;;
113 esac
114 # The following will need to be modified for the installed libperl.x.
115 # The modification to Config.pm is done by the installperl script after the build and test.
ac9901e0 116 ccdlflags="-W l,dll `pwd`/libperl.x"
f2766b05 117 lddlflags="-W l,dll `pwd`/libperl.x"
ac9901e0 118 ;;
5f912e1c 119esac
ac9901e0 120# even on static builds using LIBPATH should be OK.
5f912e1c
PP
121case "$ldlibpthname" in
122'') ldlibpthname=LIBPATH ;;
123esac
9d116dd7 124
5f912e1c
PP
125# Header files to include.
126# You can override these with Configure -Ui_time -Ui_systime.
127case "$i_time" in
128'') i_time='define' ;;
129esac
130case "$i_systime" in
131'') i_systime='define' ;;
132esac
86339dc9
TB
133
134# (from aix.sh)
135# uname -m output is too specific and not appropriate here
9d116dd7 136# osname should come from Configure
5f912e1c 137# You can override this with Configure -Darchname='s390' but please don't.
86339dc9
TB
138case "$archname" in
139'') archname="$osname" ;;
140esac
141
5f912e1c
PP
142# We have our own cppstdin script. This is not a variable since
143# Configure sees the presence of the script file.
144# We put system header -D definitions in so that Configure
145# can find the shmat() prototype in <sys/shm.h> and various
146# other things. Unfortunately, cppflags occurs too late to be of
147# value external to the script. This may need to be revisited
148# under a compiler other than c89.
f2766b05
PP
149case "$usedl" in
150define)
151echo 'cat >.$$.c; '"$cc"' -D_OE_SOCKETS -D_XOPEN_SOURCE_EXTENDED -D_ALL_SOURCE -D_SHR_ENVIRON -E -Wc,NOLOC ${1+"$@"} .$$.c; rm .$$.c' > cppstdin
152 ;;
153*)
5f912e1c 154echo 'cat >.$$.c; '"$cc"' -D_OE_SOCKETS -D_XOPEN_SOURCE_EXTENDED -D_ALL_SOURCE -E -Wc,NOLOC ${1+"$@"} .$$.c; rm .$$.c' > cppstdin
f2766b05
PP
155 ;;
156esac
23e2eca9
PP
157
158#
5f912e1c 159# Note that Makefile.SH employs a bare yacc command to generate
23e2eca9
PP
160# perly.[hc] and a2p.[hc], hence you may wish to:
161#
162# alias yacc='myyacc'
163#
164# Then if you would like to use myyacc and skip past the
165# following warnings try invoking Configure like so:
166#
167# sh Configure -Dbyacc=yacc
168#
169# This trick ought to work even if your yacc is byacc.
170#
171if test "X$byacc" = "Xbyacc" ; then
172 if test -e /etc/yyparse.c ; then
173 : we should be OK - perhaps do a test -r?
174 else
175 cat <<EOWARN >&4
176
177Warning. You do not have a copy of yyparse.c, the default
178yacc parser template file, in place in /etc.
179EOWARN
180 if test -e /samples/yyparse.c ; then
181 cat <<EOWARN >&4
182
183There does appear to be a template file in /samples though.
184Please run:
185
186 cp /samples/yyparse.c /etc
187
188before attempting to Configure the build of $package.
189
190EOWARN
191 else
192 cat <<EOWARN >&4
193
194There does not appear to be one in /samples either.
195If you feel you can make use of an alternate yacc-like
196parser generator then please read the comments in the
197hints/os390.sh file carefully.
198
199EOWARN
200 fi
201 exit 1
202 fi
203fi
204