This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Ticket number for bitops in perlexperiment
[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
1973dd96 6# Andy Dougherty <doughera@lafayette.edu>
e8c10df3
SH
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):
b238e826
JH
16# 1184 - "=" is used where where "==" may have been intended
17# 1552 - variable "foo" set but never used
ba51d756
CS
18
19# Tweaked by Chip Salzenberg <chip@perl.com> on 5/13/97
20# - don't assume 'cc -n32' if the n32 libm.so is missing
85f483a2 21
eb1cfdd6
MB
22# Threaded by Jarkko Hietaniemi <jhi@iki.fi> on 11/18/97
23# - POSIX threads knowledge by IRIX version
24
37c4c505
KS
25# gcc-enabled by Kurt Starsinic <kstar@isinet.com> on 3/24/1998
26
5ff3f7a4
GS
27# 64-bitty by Jarkko Hietaniemi on 9/1998
28
2c549067
MP
29# Martin Pool added -shared for gcc on 2004-01-27
30
e8c10df3
SH
31# Use sh Configure -Dcc='cc -n32' to try compiling with -n32.
32# or -Dcc='cc -n32 -mips3' (or -mips4) to force (non)portability
33# Don't bother with -n32 unless you have the 7.1 or later compilers.
34# But there's no quick and light-weight way to check in 6.2.
f4cb4c40 35
1381c0fe
JH
36# NOTE: some IRIX cc versions, e.g. 7.3.1.1m (try cc -version) have
37# been known to have issues (coredumps) when compiling perl.c.
38# If you've used -OPT:fast_io=ON and this happens, try removing it.
39# If that fails, or you didn't use that, then try adjusting other
40# optimization options (-LNO, -INLINE, -O3 to -O2, etcetera).
41# The compiler bug has been reported to SGI.
20f6aaab 42# -- Allen Smith <allens@cpan.org>
44e4f4cc 43
49117913
AS
44# Modified (10/30/04) to turn off usemallocwrap (PERL_MALLOC_WRAP) in -n32
45# mode - Allen.
46
6d240721
JH
47case "$use64bitall" in
48$define|true|[yY]*)
49 case "`uname -s`" in
50 IRIX)
51 cat <<END >&2
52You have asked for use64bitall but you aren't running on 64-bit IRIX.
53I'll try changing it to use64bitint.
54END
55 use64bitall="$undef"
56
57 case "`uname -r`" in
58 [1-5]*|6.[01])
59 cat <<END >&2
60Sorry, can't do use64bitint either. Try upgrading to IRIX 6.2 or later.
61END
62 use64bitint="$undef"
63 ;;
64 *) use64bitint="$define"
65 ;;
66 esac
67 ;;
68 esac
69 ;;
70esac
71
72# Until we figure out what to be probed for in Configure (ditto for hpux.sh)
73case "$usemorebits" in # Need to expand this now, then.
74$define|true|[yY]*)
75 case "`uname -r`" in
76 [1-5]*|6.[01])
77 uselongdouble="$define"
78 ;;
79 *) use64bitint="$define" uselongdouble="$define" ;;
80 esac
81esac
82
ba51d756
CS
83# Let's assume we want to use 'cc -n32' by default, unless the
84# necessary libm is missing (which has happened at least twice)
85f483a2 85case "$cc" in
a3489f11
JH
86'') case "$use64bitall" in
87 "$define"|true|[yY]*) test -f /usr/lib64/libm.so && cc='cc -64' ;;
88 *) test -f /usr/lib32/libm.so && cc='cc -n32' ;;
89 esac
90esac
6b356c8e 91
6d240721
JH
92case "$use64bitint" in
93 "$define"|true|[yY]*) ;;
94 *) d_casti32="$undef" ;;
95esac
96
5e4c82f0 97cc=${cc:-cc}
20f6aaab 98cat=${cat:-cat}
a3489f11 99
20f6aaab 100$cat > UU/cc.cbu <<'EOCCBU'
6d240721
JH
101# This script UU/cc.cbu will get 'called-back' by Configure after it
102# has prompted the user for the C compiler to use.
103
6b356c8e 104case "$cc" in
0b6ebfad
JH
105*gcc*)
106 # With cc we can use -c99, but with gcc we just can't use C99 headers.
107 # (There is a hidden define __c99 that cc uses, but trying to use that
108 # with gcc leads into magnificent explosions.)
109 i_stdint='undef'
110 ;;
220a9130 111*) ccversion=`cc -version 2>&1` ;;
6b356c8e
JH
112esac
113
85f483a2
SH
114# Check for which compiler we're using
115
e8c10df3
SH
116case "$cc" in
117*"cc -n32"*)
6d240721 118 test -z "$ldlibpthname" && ldlibpthname='LD_LIBRARYN32_PATH'
85f483a2 119
f1edc4d6
GS
120 # If a library is requested to link against, make sure the
121 # objects in the library are of the same ABI we are compiling
122 # against. Albert Chin-A-Young <china@thewrittenword.com>
6d240721
JH
123
124 # In other words, you no longer have to worry regarding having old
125 # library paths (/usr/lib) in the searchpath for -n32 or -64; thank
126 # you very much, Albert! Now if we could just get more module authors
127 # to use something like this... - Allen
128
f1edc4d6 129 libscheck='case "$xxx" in
eade9b71 130*.a) /bin/ar p $xxx `/bin/ar t $xxx | sed q` >$$.o;
f1edc4d6
GS
131 case "`/usr/bin/file $$.o`" in
132 *N32*) rm -f $$.o ;;
133 *) rm -f $$.o; xxx=/no/n32$xxx ;;
134 esac ;;
135*) case "`/usr/bin/file $xxx`" in
136 *N32*) ;;
137 *) xxx=/no/n32$xxx ;;
138 esac ;;
6e553f51
JH
139esac'
140
a3489f11 141 # NOTE: -L/usr/lib32 -L/lib32 are automatically selected by the linker
6d240721 142 test -z "$ldflags" && ldflags=' -L/usr/local/lib32 -L/usr/local/lib'
a3489f11
JH
143 cccdlflags=' '
144 # From: David Billinghurst <David.Billinghurst@riotinto.com.au>
145 # If you get complaints about so_locations then change the following
146 # line to something like:
147 # lddlflags="-n32 -shared -check_registry /usr/lib32/so_locations"
6d240721
JH
148 test -z "$lddlflags" && lddlflags="-n32 -shared"
149 test -z "$libc" && libc='/usr/lib32/libc.so'
150 test -z "$plibpth" && plibpth='/usr/lib32 /lib32 /usr/ccs/lib'
49117913
AS
151
152 # PERL_MALLOC_WRAP gives false alarms ("panic: memory wrap") in IRIX
153 # -n32 mode, resulting in perl compiles never getting further than
154 # miniperl. I am not sure whether it actually does any good in -32 or
155 # -64 mode, especially the latter, but it does not give false
156 # alarms (in testing). -Allen
157
158 usemallocwrap=${usemallocwrap:-false}
159 ;;
f737ff5c 160*"cc -64"*)
6d240721
JH
161 case "`uname -s`" in
162 IRIX)
20f6aaab 163 $cat >&4 <<EOM
6d240721
JH
164You cannot use cc -64 or -Duse64bitall in 32-bit IRIX, sorry.
165Cannot continue, aborting.
166EOM
167 exit 1
168 ;;
169 esac
170 test -z "$ldlibpthname" && ldlibpthname='LD_LIBRARY64_PATH'
171 test -z "$use64bitall" && use64bitall="$define"
172 test -z "$use64bitint" && use64bitint="$define"
a3489f11
JH
173 loclibpth="$loclibpth /usr/lib64"
174 libscheck='case "`/usr/bin/file $xxx`" in
175*64-bit*) ;;
176*) xxx=/no/64-bit$xxx ;;
177esac'
178 # NOTE: -L/usr/lib64 -L/lib64 are automatically selected by the linker
6d240721 179 test -z "$ldflags" && ldflags=' -L/usr/local/lib64 -L/usr/local/lib'
a3489f11 180 cccdlflags=' '
6d240721 181 test -z "$archname64" && archname64='64all'
a3489f11
JH
182 # From: David Billinghurst <David.Billinghurst@riotinto.com.au>
183 # If you get complaints about so_locations then change the following
184 # line to something like:
185 # lddlflags="-64 -shared -check_registry /usr/lib64/so_locations"
6d240721
JH
186 test -z lddlflags="-64 -shared"
187 test -z "$libc" && libc='/usr/lib64/libc.so'
188 test -z "$plibpth" && plibpth='/usr/lib64 /lib64 /usr/ccs/lib'
a3489f11
JH
189 ;;
190*gcc*)
3a2263fe 191 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME"
6d240721 192 test -z "$optimize" && optimize="-O3"
a3489f11 193 usenm='undef'
2c549067
MP
194 # It seems gcc can build Irix shlibs, but of course it needs
195 # -shared. Otherwise you get link errors looking for main().
196 lddlflags="$lddlflags -shared"
a3489f11
JH
197 case "`uname -s`" in
198 # Without the -mabi=64 gcc in 64-bit IRIX has problems passing
199 # and returning small structures. This affects inet_*() and semctl().
46c3340e 200 # See http://groups.google.com/group/comp.sys.sgi.admin/msg/3ad8353bc4ce3cb0
a3489f11
JH
201 # for more information. Reported by Lionel Cons <lionel.cons@cern.ch>.
202 IRIX64) ccflags="$ccflags -mabi=64"
203 ldflags="$ldflags -mabi=64 -L/usr/lib64"
204 lddlflags="$lddlflags -mabi=64"
205 ;;
206 *) ccflags="$ccflags -DIRIX32_SEMUN_BROKEN_BY_GCC"
49117913
AS
207 # XXX Note: It is possible that turning off usemallocwrap is
208 # needed here; insufficient data! - Allen
a3489f11
JH
209 ;;
210 esac
211 ;;
212*)
213 # this is needed to force the old-32 paths
214 # since the system default can be changed.
215 ccflags="$ccflags -32 -D_BSD_TYPES -D_BSD_TIME -Olimit 3100"
216 optimize='-O'
217 ;;
218esac
219
220# Settings common to both native compiler modes.
221case "$cc" in
f737ff5c 222*"cc -n32"*|*"cc -64"*)
6d240721 223 test -z "$ld" && ld=$cc
a3489f11
JH
224
225 # perl's malloc can return improperly aligned buffer
5ec73030
JH
226 # which (under 5.6.0RC1) leads into really bizarre bus errors
227 # and freak test failures (lib/safe1 #18, for example),
228 # even more so with -Duse64bitall: for example lib/io_linenumtb.
229 # fails under the harness but succeeds when run separately,
230 # under make test pragma/warnings #98 fails, and lib/io_dir
231 # apparently coredumps (the last two don't happen under
232 # the harness. Helmut Jarausch is seeing bus errors from
233 # miniperl, as was Scott Henry with snapshots from just before
234 # the RC1. --jhi
235 usemymalloc='undef'
a3489f11 236
6d240721
JH
237 # Was at the first of the line - Allen
238 #malloc_cflags='ccflags="-DSTRICT_ALIGNMENT $ccflags"'
239
240 nm_opt="$nm_opt -p"
241 nm_so_opt="$nm_so_opt -p"
a3489f11 242
1f3e59ba
JH
243 # Warnings to turn off because the source code hasn't
244 # been cleaned up enough yet to satisfy the IRIX cc.
0b6ebfad 245 # 1047: macro redefinitions (in IRIX' own system headers!)
1f3e59ba
JH
246 # 1184: "=" is used where where "==" may have been intended.
247 # 1552: The variable "foobar" is set but never used.
248 woff=1184,1552
249
29c7c2ae
SH
250 # Perl 5.004_57 introduced new qsort code into pp_ctl.c that
251 # makes IRIX cc prior to 7.2.1 to emit bad code.
252 # so some serious hackery follows to set pp_ctl flags correctly.
253
85f483a2
SH
254 # Check for which version of the compiler we're running
255 case "`$cc -version 2>&1`" in
256 *7.0*) # Mongoose 7.0
1f3e59ba 257 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff $woff -OPT:Olimit=0"
589615b8 258 optimize='none'
85f483a2 259 ;;
cd25c765 260 *7.1*|*7.2|*7.20) # Mongoose 7.1+
6d240721
JH
261 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff $woff"
262 case "$optimize" in
263 '') optimize='-O3 -OPT:Olimit=0' ;;
264 '-O') optimize='-O3 -OPT:Olimit=0' ;;
265 *) ;;
266 esac
267
268 # This is a temporary fix for 5.005+.
269 # See hints/README.hints, especially the section
270 # =head2 Propagating variables to config.sh
271
272 # Note the part about case statements not working without
273 # weirdness like the below echo statement... and, since
274 # we're in a callback unit, it's to config.sh, not UU/config.sh
275 # - Allen
276
277
278 pp_ctl_cflags="$pp_ctl_flags optimize=\"$optimize -O1\""
279 echo "pp_ctl_cflags=\"$pp_ctl_flags optimize=\\\"\$optimize -O1\\\"\"" >> config.sh
29c7c2ae 280 ;;
6d240721
JH
281
282
283
20f6aaab 284# XXX What is space=ON doing in here? Could someone ask Scott Henry? - Allen
6d240721 285
29c7c2ae 286 *7.*) # Mongoose 7.2.1+
6d240721
JH
287 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff $woff"
288 case "$optimize" in
289 '') optimize='-O3 -OPT:Olimit=0:space=ON' ;;
290 '-O') optimize='-O3 -OPT:Olimit=0:space=ON' ;;
291 *) ;;
292 esac
0b6ebfad
JH
293 # Perl source has just grown too chummy with c99
294 # (headerwise, not code-wise: we use <stdint.h> and such)
295 ccflags="$ccflags -c99"
85f483a2
SH
296 ;;
297 *6.2*) # Ragnarok 6.2
1f3e59ba 298 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff $woff"
589615b8 299 optimize='none'
85f483a2
SH
300 ;;
301 *) # Be safe and not optimize
20f6aaab 302 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff $woff"
85f483a2
SH
303 optimize='none'
304 ;;
305 esac
306
9ea370a7
KS
307# this is to accommodate the 'modules' capability of the
308# 7.2 MIPSPro compilers, which allows for the compilers to be installed
309# in a nondefault location. Almost everything works as expected, but
310# /usr/include isn't caught properly. Hence see the /usr/include/pthread.h
311# change below to include TOOLROOT (a modules environment variable),
312# and the following code. Additional
313# code to accommodate the 'modules' environment should probably be added
314# here if possible, or be inserted as a ${TOOLROOT} reference before
315# absolute paths (again, see the pthread.h change below).
316# -- krishna@sgi.com, 8/23/98
317
a3489f11
JH
318 if [ "X${TOOLROOT}" != "X" ]; then
319 # we cant set cppflags because it gets overwritten
320 # we dont actually need $TOOLROOT/usr/include on the cc line cuz the
321 # modules functionality already includes it but
322 # XXX - how do I change cppflags in the hints file?
323 ccflags="$ccflags -I${TOOLROOT}/usr/include"
9ea370a7 324 usrinc="${TOOLROOT}/usr/include"
a3489f11 325 fi
9ea370a7 326
e8c10df3
SH
327 ;;
328esac
c43fed53 329
1381c0fe 330# workaround for an optimizer bug
6d240721
JH
331# Made to work via UU/config.sh thing (or, rather, config.sh, since we're in
332# a callback) from README.hints, plus further stuff; doesn't handle -g still,
333# unfortunately - Allen
ea437474 334case "`$cc -version 2>&1`" in
6d240721
JH
335*7.2.*)
336 test -z "$op_cflags" && echo "op_cflags=\"optimize=\\\"\$optimize -O1\\\"\"" >> config.sh
337 test -z "$op_cflags" && op_cflags="optimize=\"\$optimize -O1\""
338 test -z "$opmini_cflags" && echo "opmini_cflags=\"optimize=\\\"\$optimize -O1\\\"\"" >> config.sh
339 test -z "$opmini_cflags" && opmini_cflags="optimize=\"\$optimize -O1\""
340 ;;
341*7.3.1.*)
342 test -z "$op_cflags" && echo "op_cflags=\"optimize=\\\"\$optimize -O2\\\"\"" >> config.sh
343 test -z "$op_cflags" && op_cflags="$op_cflags optimize=\"\$optimize -O2\""
344 test -z "$opmini_cflags" && echo "opmini_cflags=\"optimize=\\\"\$optimize -O2\\\"\"" >> config.sh
345 test -z "$opmini_cflags" && opmini_cflags="optimize=\"\$optimize -O2\""
346 ;;
ea6ddde2
JH
347esac
348
c297d531
AD
349
350# Workaround [perl #33849]: perl 5.8.6 fails to build on IRIX 6.5 due to
351# bizarre preprocessor bug: cc -E - unfortunately goes into K&R mode, but
352# cc -E file.c doesn't. Force a wrapper to always get the ANSI mode.
353# (We only need to do this for cc, not for gcc. ccversion is computed above.)
354case "$ccversion" in
355'') ;; # gcc. Do nothing.
08c5d564
AD
356*) # Inside this call-back unit, we are down in the UU/ subdirectory,
357 # but Configure will look for cppstdin one level up.
358 cd ..; cppstdin=`pwd`/cppstdin; cd UU
c297d531
AD
359 cpprun="$cppstdin"
360 ;;
361esac
362
1764d98b
JH
363# There is a devious bug in the MIPSpro 7.4 compiler:
364# memcmp() is an inlined intrinsic, and "sometimes" it gets compiled wrong.
365#
366# In Perl the most obvious hit is regcomp.c:S_regpposixcc(),
367# causing bus errors when compiling the POSIX character classes like
368# /[[:digit:]], which means that miniperl cannot build perl.
369# (That is almost only the one victim: one single test in re/pat fails, also.)
370#
371# Therefore let's turn the inline intrinsics off and let the normal
372# libc versions be used instead. This may cause a performance hit
373# but a little slower is better than zero speed.
374#
375# MIPSpro C 7.4.1m is supposed to have fixed this bug.
376#
377case "$ccversion" in
378"MIPSpro Compilers: Version 7.4")
379 ccflags="$ccflags -U__INLINE_INTRINSICS"
380 ;;
381esac
382
6d240721
JH
383EOCCBU
384
385# End of cc.cbu callback unit. - Allen
386
f5a8bab6
GS
387# We don't want these libraries.
388# Socket networking is in libc, these are not installed by default,
389# and just slow perl down. (scotth@sgi.com)
53df3d8c
JH
390# librt contains nothing we need (some places need it for Time::HiRes) --jhi
391set `echo X "$libswanted "|sed -e 's/ socket / /' -e 's/ nsl / /' -e 's/ dl / /' -e 's/ rt / /'`
f4cb4c40
AD
392shift
393libswanted="$*"
e8c10df3
SH
394
395# I have conflicting reports about the sun, crypt, bsd, and PW
396# libraries on Irix 6.2.
397#
20f6aaab 398# One user reports:
e8c10df3
SH
399# Don't need sun crypt bsd PW under 6.2. You *may* need to link
400# with these if you want to run perl built under 6.2 on a 5.3 machine
401# (I haven't checked)
ecfc5424 402#
e8c10df3
SH
403# Another user reported that if he included those libraries, a large number
404# of the tests failed (approx. 20-25) and he would get a core dump. To
405# make things worse, test results were inconsistent, i.e., some of the
406# tests would pass some times and fail at other times.
407# The safest thing to do seems to be to eliminate them.
408#
409# Actually, the only libs that you want are '-lm'. Everything else
410# you need is in libc. You do also need '-lbsd' if you choose not
411# to use the -D_BSD_* defines. Note that as of 6.2 the only
412# difference between '-lmalloc' and '-lc' malloc is the debugging
f5a8bab6 413# and control calls, which aren't used by perl. -- scotth@sgi.com
f4cb4c40 414
f5a8bab6 415set `echo X "$libswanted "|sed -e 's/ sun / /' -e 's/ crypt / /' -e 's/ bsd / /' -e 's/ PW / /' -e 's/ malloc / /'`
e8c10df3
SH
416shift
417libswanted="$*"
eb1cfdd6 418
6d240721
JH
419# libbind.{so|a} would be from a BIND/named installation - IRIX 6.5.* has
420# pretty much everything that would be useful in libbind in libc, including
421# accessing a local caching server (nsd) that will also look in /etc/hosts,
422# NIS (yuck!), etcetera. libbind also doesn't have the _r (thread-safe
423# reentrant) functions.
424# - Allen <easmith@beatrice.rutgers.edu>
425
426case "`uname -r`" in
4276.5)
428 set `echo X "$libswanted "|sed -e 's/ bind / /'`
429 shift
430 libswanted="$*"
431 ;;
432esac
433
434# Don't groan about unused libraries.
435case "$ldflags" in
436 *-Wl,-woff,84*) ;;
437 *) ldflags="$ldflags -Wl,-woff,84" ;;
438esac
439
2c133f5f
JH
440# IRIX freeware kits sometimes have only o32 libraries for gdbm.
441# You can try Configure ... -Dlibswanted='m' -Dnoextensions='GDBM_File'
442# since the libm seems to be pretty much the only really needed library.
443
6d240721
JH
444# Irix 6.5.6 seems to have a broken header <sys/mode.h>
445# don't include that (it doesn't contain S_IFMT, S_IFREG, et al)
446
447i_sysmode="$undef"
448
20f6aaab 449$cat > UU/usethreads.cbu <<'EOCBU'
104d25b7
JH
450# This script UU/usethreads.cbu will get 'called-back' by Configure
451# after it has prompted the user for whether to use threads.
104d25b7
JH
452case "$usethreads" in
453$define|true|[yY]*)
454 if test ! -f ${TOOLROOT}/usr/include/pthread.h -o ! -f /usr/lib/libpthread.so; then
455 case "`uname -r`" in
456 [1-5].*|6.[01])
457 cat >&4 <<EOM
458IRIX `uname -r` does not support POSIX threads.
459You should upgrade to at least IRIX 6.2 with pthread patches.
460EOM
461 ;;
462 6.2)
463 cat >&4 <<EOM
464IRIX 6.2 can have the POSIX threads.
7162771d 465However, the following IRIX patches (or their replacements) MUST be installed:
104d25b7
JH
466 1404 Irix 6.2 Posix 1003.1b man pages
467 1645 IRIX 6.2 & 6.3 POSIX header file updates
468 2000 Irix 6.2 Posix 1003.1b support modules
469 2254 Pthread library fixes
470 2401 6.2 all platform kernel rollup
471IMPORTANT:
472 Without patch 2401, a kernel bug in IRIX 6.2 will
473 cause your machine to panic and crash when running
474 threaded perl. IRIX 6.3 and up should be OK.
475EOM
476 ;;
477 [67].*)
478 cat >&4 <<EOM
479IRIX `uname -r` should have the POSIX threads.
480But, somehow, you do not seem to have them installed.
481EOM
482 ;;
483 esac
484 cat >&4 <<EOM
485Cannot continue, aborting.
486EOM
487 exit 1
488 fi
489 set `echo X "$libswanted "| sed -e 's/ c / pthread /'`
104d25b7
JH
490 shift
491 libswanted="$*"
492
493 usemymalloc='n'
5ad89fa3
JH
494
495 # These are hidden behind a _POSIX1C ifdef that would
496 # require including <pthread.h> for the Configure hasproto
497 # to see these.
6d240721
JH
498
499# d_asctime_r_proto="$define"
500# d_ctime_r_proto="$define"
501# d_gmtime_r_proto="$define"
502# d_localtime_r_proto="$define"
503
504 # Safer just to go ahead and include it, for other ifdefs like them
505 # (there are a lot, such as in netdb.h). - Allen
506 ccflags="$ccflags -DPTHREAD_H_FIRST"
507
508 pthread_h_first="$define"
509 echo "pthread_h_first='define'" >> config.sh
510
104d25b7 511 ;;
6d240721 512
104d25b7
JH
513esac
514EOCBU
515
6b8eaf93
JH
516# The -n32 makes off_t to be 8 bytes, so we should have largefileness.
517
20f6aaab 518$cat > UU/use64bitint.cbu <<'EOCBU'
6d240721
JH
519# This script UU/use64bitint.cbu will get 'called-back' by Configure
520# after it has prompted the user for whether to use 64 bit integers.
521
db3030c0 522case "$use64bitint" in
6d240721
JH
523$define|true|[yY]*)
524 case "`uname -r`" in
525 [1-5]*|6.[01])
526 cat >&4 <<EOM
527IRIX `uname -r` does not support 64-bit types.
528You should upgrade to at least IRIX 6.2.
529Cannot continue, aborting.
530EOM
531 exit 1
532 ;;
533 esac
534 usemymalloc="$undef"
535 ;;
536*) d_casti32="$undef" ;;
db3030c0 537esac
afd0dee8 538
6d240721
JH
539EOCBU
540
20f6aaab 541$cat > UU/use64bitall.cbu <<'EOCBU'
6d240721
JH
542# This script UU/use64bitall.cbu will get 'called-back' by Configure
543# after it has prompted the user for whether to be maximally 64 bitty.
544
545case "$use64bitall" in
546$define|true|[yY]*)
547 case "$cc" in
548 *-n32*|*-32*)
549 cat >&4 <<EOM
550You cannot use a non-64 bit cc for -Duse64bitall, sorry.
551Cannot continue, aborting.
552EOM
553 exit 1
554 ;;
555 esac
556 ;;
557esac
558
559EOCBU
560
20f6aaab
AS
561$cat > UU/uselongdouble.cbu <<'EOCBU'
562# This script UU/uselongdouble.cbu will get 'called-back' by Configure
563# after it has prompted the user for whether to use long doubles.
564
565# This script is designed to test IRIX (and other machines, once it's put into
566# Configure) for a bug in which they fail to round correctly when using
567# sprintf/printf/etcetera on a long double with precision specified (%.0Lf or
568# whatever). Sometimes, this only happens when the number in question is
569# between 1 and -1, weirdly enough. - Allen
570
571case "$uselongdouble" in
572$define|true|[yY]*)
573
574case "$d_PRIfldbl" in
575$define|true|[yY]*)
576
577 echo " " >try.c
578 $cat >>try.c <<EOP
579#include <stdio.h>
580
581#define sPRIfldbl $sPRIfldbl
582
583#define I_STDLIB $i_stdlib
584#ifdef I_STDLIB
585#include <stdlib.h>
586#endif
587
588int main()
589{
590 char buf1[64];
591 char buf2[64];
592 buf1[63] = '\0';
593 buf2[63] = '\0';
594
595 (void)sprintf(buf1,"%.0"sPRIfldbl,(long double)0.6L);
596 (void)sprintf(buf2,"%.0f",(double)0.6);
597 if (strcmp(buf1,buf2)) {
598 exit(1);
599 }
600 (void)sprintf(buf1,"%.0"sPRIfldbl,(long double)-0.6L);
601 (void)sprintf(buf2,"%.0f",(double)-0.6);
602 if (strcmp(buf1,buf2)) {
603 exit(1);
604 } else {
605 exit(0);
606 }
607}
608
609EOP
610
611 set try
612 if eval $compile && $run ./try; then
613 rm -f try try.* >/dev/null
614 else
615 rm -f try try.* core a.out >/dev/null
616 ccflags="$ccflags -DHAS_LDBL_SPRINTF_BUG"
617 cppflags="$cppflags -DHAS_LDBL_SPRINTF_BUG"
618
619 echo " " >try.c
620 $cat >>try.c <<EOP
621#include <stdio.h>
622
623#define sPRIfldbl $sPRIfldbl
624
625#define I_STDLIB $i_stdlib
626#ifdef I_STDLIB
627#include <stdlib.h>
628#endif
629
630int main()
631{
632 char buf1[64];
633 char buf2[64];
634 buf1[63] = '\0';
635 buf2[63] = '\0';
636
637 (void)sprintf(buf1,"%.0"sPRIfldbl,(long double)1.6L);
638 (void)sprintf(buf2,"%.0f",(double)1.6);
639 if (strcmp(buf1,buf2)) {
640 exit(1);
641 }
642 (void)sprintf(buf1,"%.0"sPRIfldbl,(long double)-1.6L);
643 (void)sprintf(buf2,"%.0f",(double)-1.6);
644 if (strcmp(buf1,buf2)) {
645 exit(1);
646 } else {
647 exit(0);
648 }
649}
650
651EOP
652
653 set try
654 if eval $compile && $run ./try; then
655 rm -f try try.c >/dev/null
656 ccflags="$ccflags -DHAS_LDBL_SPRINTF_BUG_LESS1"
657 cppflags="$cppflags -DHAS_LDBL_SPRINTF_BUG_LESS1"
658 else
659 rm -f try try.c core try.o a.out >/dev/null
660 fi
661 fi
662;;
663*) # Can't tell!
664 ccflags="$ccflags -DHAS_LDBL_SPRINTF_BUG"
665 cppflags="$cppflags -DHAS_LDBL_SPRINTF_BUG"
666 ;;
667esac
668
669# end of case statement for how to print ldbl with 'f'
670;;
671*) ;;
672esac
673
674# end of case statement for whether to do long doubles
675
676EOCBU
677
d1a954cb
JH
678# Helmut Jarausch reports that Perl's malloc is rather unusable
679# with IRIX, and SGI confirms the problem.
680usemymalloc=${usemymalloc:-false}
5b96080c
JH
681
682# Configure finds <fcntl.h> but then thinks it can use <sys/file.h>
683# instead; in IRIX this is not true because the prototype of fcntl()
684# requires explicit include of <fcntl.h>
685i_fcntl=define