This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[patch] -Wall
[perl5.git] / hints / irix_6.sh
CommitLineData
85f483a2 1# hints/irix_6.sh
e8c10df3
SH
2#
3# original from Krishna Sethuraman, krishna@sgi.com
4#
ba51d756 5# Modified Mon Jul 22 14:52:25 EDT 1996
e8c10df3
SH
6# Andy Dougherty <doughera@lafcol.lafayette.edu>
7# with help from Dean Roehrich <roehrich@cray.com>.
8# cc -n32 update info from Krishna Sethuraman, krishna@sgi.com.
9# additional update from Scott Henry, scotth@sgi.com
f4cb4c40 10
ba51d756
CS
11# Futzed with by John Stoffel <jfs@fluent.com> on 4/24/1997
12# - assumes 'cc -n32' by default
13# - tries to check for various compiler versions and do the right
14# thing when it can
15# - warnings turned off (-n32 messages):
16# 1116 - non-void function should return a value
17# 1048 - cast between pointer-to-object and pointer-to-function
18# 1042 - operand types are incompatible
19
20# Tweaked by Chip Salzenberg <chip@perl.com> on 5/13/97
21# - don't assume 'cc -n32' if the n32 libm.so is missing
85f483a2 22
eb1cfdd6
MB
23# Threaded by Jarkko Hietaniemi <jhi@iki.fi> on 11/18/97
24# - POSIX threads knowledge by IRIX version
25
37c4c505
KS
26# gcc-enabled by Kurt Starsinic <kstar@isinet.com> on 3/24/1998
27
5ff3f7a4
GS
28# 64-bitty by Jarkko Hietaniemi on 9/1998
29
e8c10df3
SH
30# Use sh Configure -Dcc='cc -n32' to try compiling with -n32.
31# or -Dcc='cc -n32 -mips3' (or -mips4) to force (non)portability
32# Don't bother with -n32 unless you have the 7.1 or later compilers.
33# But there's no quick and light-weight way to check in 6.2.
f4cb4c40 34
1381c0fe
JH
35# NOTE: some IRIX cc versions, e.g. 7.3.1.1m (try cc -version) have
36# been known to have issues (coredumps) when compiling perl.c.
37# If you've used -OPT:fast_io=ON and this happens, try removing it.
38# If that fails, or you didn't use that, then try adjusting other
39# optimization options (-LNO, -INLINE, -O3 to -O2, etcetera).
40# The compiler bug has been reported to SGI.
41# -- Allen Smith <easmith@beatrice.rutgers.edu>
44e4f4cc 42
ba51d756
CS
43# Let's assume we want to use 'cc -n32' by default, unless the
44# necessary libm is missing (which has happened at least twice)
85f483a2 45case "$cc" in
a3489f11
JH
46'') case "$use64bitall" in
47 "$define"|true|[yY]*) test -f /usr/lib64/libm.so && cc='cc -64' ;;
48 *) test -f /usr/lib32/libm.so && cc='cc -n32' ;;
49 esac
50esac
6b356c8e 51
5e4c82f0 52cc=${cc:-cc}
a3489f11 53
6b356c8e
JH
54case "$cc" in
55*gcc*) ;;
56*) ccversion=`cc -version` ;;
57esac
58
a3489f11
JH
59case "$use64bitint" in
60$define|true|[yY]*)
61 case "`uname -r`" in
62 [1-5]*|6.[01])
63 cat >&4 <<EOM
64IRIX `uname -r` does not support 64-bit types.
65You should upgrade to at least IRIX 6.2.
66Cannot continue, aborting.
67EOM
68 exit 1
69 ;;
70 esac
71 ;;
72esac
73
74case "$use64bitall" in
75"$define"|true|[yY]*)
76 case "`uname -s`" in
77 IRIX)
78 cat >&4 <<EOM
79You cannot use -Duse64bitall in 32-bit IRIX, sorry.
80
81Cannot continue, aborting.
82EOM
83 exit 1
84 ;;
85 esac
86 ;;
85f483a2
SH
87esac
88
89# Check for which compiler we're using
90
e8c10df3
SH
91case "$cc" in
92*"cc -n32"*)
85f483a2 93
f1edc4d6
GS
94 # If a library is requested to link against, make sure the
95 # objects in the library are of the same ABI we are compiling
96 # against. Albert Chin-A-Young <china@thewrittenword.com>
97 libscheck='case "$xxx" in
98*.a) /bin/ar p $xxx `/bin/ar t $xxx | /usr/bsd/head -1` >$$.o;
99 case "`/usr/bin/file $$.o`" in
100 *N32*) rm -f $$.o ;;
101 *) rm -f $$.o; xxx=/no/n32$xxx ;;
102 esac ;;
103*) case "`/usr/bin/file $xxx`" in
104 *N32*) ;;
105 *) xxx=/no/n32$xxx ;;
106 esac ;;
6e553f51
JH
107esac'
108
a3489f11
JH
109 # NOTE: -L/usr/lib32 -L/lib32 are automatically selected by the linker
110 ldflags=' -L/usr/local/lib32 -L/usr/local/lib'
111 cccdlflags=' '
112 # From: David Billinghurst <David.Billinghurst@riotinto.com.au>
113 # If you get complaints about so_locations then change the following
114 # line to something like:
115 # lddlflags="-n32 -shared -check_registry /usr/lib32/so_locations"
116 lddlflags="-n32 -shared"
117 libc='/usr/lib32/libc.so'
118 plibpth='/usr/lib32 /lib32 /usr/ccs/lib'
119 ;;
f737ff5c 120*"cc -64"*)
a3489f11
JH
121
122 loclibpth="$loclibpth /usr/lib64"
123 libscheck='case "`/usr/bin/file $xxx`" in
124*64-bit*) ;;
125*) xxx=/no/64-bit$xxx ;;
126esac'
127 # NOTE: -L/usr/lib64 -L/lib64 are automatically selected by the linker
128 ldflags=' -L/usr/local/lib64 -L/usr/local/lib'
129 cccdlflags=' '
130 # From: David Billinghurst <David.Billinghurst@riotinto.com.au>
131 # If you get complaints about so_locations then change the following
132 # line to something like:
133 # lddlflags="-64 -shared -check_registry /usr/lib64/so_locations"
134 lddlflags="-64 -shared"
135 libc='/usr/lib64/libc.so'
136 plibpth='/usr/lib64 /lib64 /usr/ccs/lib'
137 ;;
138*gcc*)
139 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -D_POSIX_C_SOURCE"
140 optimize="-O3"
141 usenm='undef'
142 case "`uname -s`" in
143 # Without the -mabi=64 gcc in 64-bit IRIX has problems passing
144 # and returning small structures. This affects inet_*() and semctl().
145 # See http://reality.sgi.com/ariel/freeware/gcc-2.8.1-notes.html
146 # for more information. Reported by Lionel Cons <lionel.cons@cern.ch>.
147 IRIX64) ccflags="$ccflags -mabi=64"
148 ldflags="$ldflags -mabi=64 -L/usr/lib64"
149 lddlflags="$lddlflags -mabi=64"
150 ;;
151 *) ccflags="$ccflags -DIRIX32_SEMUN_BROKEN_BY_GCC"
152 ;;
153 esac
154 ;;
155*)
156 # this is needed to force the old-32 paths
157 # since the system default can be changed.
158 ccflags="$ccflags -32 -D_BSD_TYPES -D_BSD_TIME -Olimit 3100"
159 optimize='-O'
160 ;;
161esac
162
163# Settings common to both native compiler modes.
164case "$cc" in
f737ff5c 165*"cc -n32"*|*"cc -64"*)
a3489f11
JH
166 ld=$cc
167
168 # perl's malloc can return improperly aligned buffer
5ec73030
JH
169 # which (under 5.6.0RC1) leads into really bizarre bus errors
170 # and freak test failures (lib/safe1 #18, for example),
171 # even more so with -Duse64bitall: for example lib/io_linenumtb.
172 # fails under the harness but succeeds when run separately,
173 # under make test pragma/warnings #98 fails, and lib/io_dir
174 # apparently coredumps (the last two don't happen under
175 # the harness. Helmut Jarausch is seeing bus errors from
176 # miniperl, as was Scott Henry with snapshots from just before
177 # the RC1. --jhi
178 usemymalloc='undef'
179#malloc_cflags='ccflags="-DSTRICT_ALIGNMENT $ccflags"'
a3489f11
JH
180
181 nm_opt='-p'
182 nm_so_opt='-p'
183
29c7c2ae
SH
184 # Perl 5.004_57 introduced new qsort code into pp_ctl.c that
185 # makes IRIX cc prior to 7.2.1 to emit bad code.
186 # so some serious hackery follows to set pp_ctl flags correctly.
187
85f483a2
SH
188 # Check for which version of the compiler we're running
189 case "`$cc -version 2>&1`" in
190 *7.0*) # Mongoose 7.0
49c3559d 191 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1042,1048,1110,1116,1174,1184,1552 -OPT:Olimit=0"
589615b8 192 optimize='none'
85f483a2 193 ;;
cd25c765 194 *7.1*|*7.2|*7.20) # Mongoose 7.1+
49c3559d 195 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552 -OPT:Olimit=0"
589615b8 196 optimize='-O3'
cd25c765
AD
197# This is a temporary fix for 5.005.
198# Leave pp_ctl_cflags line at left margin for Configure. See
199# hints/README.hints, especially the section
200# =head2 Propagating variables to config.sh
201pp_ctl_cflags='optimize=-O'
29c7c2ae
SH
202 ;;
203 *7.*) # Mongoose 7.2.1+
49c3559d 204 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552 -OPT:Olimit=0:space=ON"
589615b8 205 optimize='-O3'
85f483a2
SH
206 ;;
207 *6.2*) # Ragnarok 6.2
49c3559d 208 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552"
589615b8 209 optimize='none'
85f483a2
SH
210 ;;
211 *) # Be safe and not optimize
49c3559d 212 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552 -OPT:Olimit=0"
85f483a2
SH
213 optimize='none'
214 ;;
215 esac
216
9ea370a7
KS
217# this is to accommodate the 'modules' capability of the
218# 7.2 MIPSPro compilers, which allows for the compilers to be installed
219# in a nondefault location. Almost everything works as expected, but
220# /usr/include isn't caught properly. Hence see the /usr/include/pthread.h
221# change below to include TOOLROOT (a modules environment variable),
222# and the following code. Additional
223# code to accommodate the 'modules' environment should probably be added
224# here if possible, or be inserted as a ${TOOLROOT} reference before
225# absolute paths (again, see the pthread.h change below).
226# -- krishna@sgi.com, 8/23/98
227
a3489f11
JH
228 if [ "X${TOOLROOT}" != "X" ]; then
229 # we cant set cppflags because it gets overwritten
230 # we dont actually need $TOOLROOT/usr/include on the cc line cuz the
231 # modules functionality already includes it but
232 # XXX - how do I change cppflags in the hints file?
233 ccflags="$ccflags -I${TOOLROOT}/usr/include"
9ea370a7 234 usrinc="${TOOLROOT}/usr/include"
a3489f11 235 fi
9ea370a7 236
e8c10df3
SH
237 ;;
238esac
c43fed53 239
ca86e6a0
JH
240# Don't groan about unused libraries.
241ldflags="$ldflags -Wl,-woff,84"
242
1381c0fe 243# workaround for an optimizer bug
ea437474 244case "`$cc -version 2>&1`" in
23ba291d
JH
245*7.2.*) op_cflags='optimize=-O1'; opmini_cflags='optimize=-O1' ;;
246*7.3.1.*) op_cflags='optimize=-O2'; opmini_cflags='optimize=-O2' ;;
ea6ddde2
JH
247esac
248
f5a8bab6
GS
249# We don't want these libraries.
250# Socket networking is in libc, these are not installed by default,
251# and just slow perl down. (scotth@sgi.com)
ecfc5424 252set `echo X "$libswanted "|sed -e 's/ socket / /' -e 's/ nsl / /' -e 's/ dl / /'`
f4cb4c40
AD
253shift
254libswanted="$*"
e8c10df3 255
3ecbdf10
HJ
256# Irix 6.5.6 seems to have a broken header <sys/mode.h>
257# don't include that (it doesn't contain S_IFMT, S_IFREG, et al)
258
259i_sysmode="$undef"
260
e8c10df3
SH
261# I have conflicting reports about the sun, crypt, bsd, and PW
262# libraries on Irix 6.2.
263#
264# One user rerports:
265# Don't need sun crypt bsd PW under 6.2. You *may* need to link
266# with these if you want to run perl built under 6.2 on a 5.3 machine
267# (I haven't checked)
ecfc5424 268#
e8c10df3
SH
269# Another user reported that if he included those libraries, a large number
270# of the tests failed (approx. 20-25) and he would get a core dump. To
271# make things worse, test results were inconsistent, i.e., some of the
272# tests would pass some times and fail at other times.
273# The safest thing to do seems to be to eliminate them.
274#
275# Actually, the only libs that you want are '-lm'. Everything else
276# you need is in libc. You do also need '-lbsd' if you choose not
277# to use the -D_BSD_* defines. Note that as of 6.2 the only
278# difference between '-lmalloc' and '-lc' malloc is the debugging
f5a8bab6 279# and control calls, which aren't used by perl. -- scotth@sgi.com
f4cb4c40 280
f5a8bab6 281set `echo X "$libswanted "|sed -e 's/ sun / /' -e 's/ crypt / /' -e 's/ bsd / /' -e 's/ PW / /' -e 's/ malloc / /'`
e8c10df3
SH
282shift
283libswanted="$*"
eb1cfdd6 284
de6124c8 285cat > UU/usethreads.cbu <<'EOCBU'
104d25b7
JH
286# This script UU/usethreads.cbu will get 'called-back' by Configure
287# after it has prompted the user for whether to use threads.
104d25b7
JH
288case "$usethreads" in
289$define|true|[yY]*)
290 if test ! -f ${TOOLROOT}/usr/include/pthread.h -o ! -f /usr/lib/libpthread.so; then
291 case "`uname -r`" in
292 [1-5].*|6.[01])
293 cat >&4 <<EOM
294IRIX `uname -r` does not support POSIX threads.
295You should upgrade to at least IRIX 6.2 with pthread patches.
296EOM
297 ;;
298 6.2)
299 cat >&4 <<EOM
300IRIX 6.2 can have the POSIX threads.
7162771d 301However, the following IRIX patches (or their replacements) MUST be installed:
104d25b7
JH
302 1404 Irix 6.2 Posix 1003.1b man pages
303 1645 IRIX 6.2 & 6.3 POSIX header file updates
304 2000 Irix 6.2 Posix 1003.1b support modules
305 2254 Pthread library fixes
306 2401 6.2 all platform kernel rollup
307IMPORTANT:
308 Without patch 2401, a kernel bug in IRIX 6.2 will
309 cause your machine to panic and crash when running
310 threaded perl. IRIX 6.3 and up should be OK.
311EOM
312 ;;
313 [67].*)
314 cat >&4 <<EOM
315IRIX `uname -r` should have the POSIX threads.
316But, somehow, you do not seem to have them installed.
317EOM
318 ;;
319 esac
320 cat >&4 <<EOM
321Cannot continue, aborting.
322EOM
323 exit 1
324 fi
325 set `echo X "$libswanted "| sed -e 's/ c / pthread /'`
326 ld="${cc:-cc}"
327 shift
328 libswanted="$*"
329
330 usemymalloc='n'
331 ;;
332esac
333EOCBU
334
6b8eaf93
JH
335# The -n32 makes off_t to be 8 bytes, so we should have largefileness.
336