Rename use64bits to use64bitint;
[p5sagit/p5-mst-13.2.git] / hints / irix_6.sh
CommitLineData
85f483a2 1# hints/irix_6.sh
e8c10df3 2#
3# original from Krishna Sethuraman, krishna@sgi.com
4#
ba51d756 5# Modified Mon Jul 22 14:52:25 EDT 1996
e8c10df3 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 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 23# Threaded by Jarkko Hietaniemi <jhi@iki.fi> on 11/18/97
24# - POSIX threads knowledge by IRIX version
25
37c4c505 26# gcc-enabled by Kurt Starsinic <kstar@isinet.com> on 3/24/1998
27
5ff3f7a4 28# 64-bitty by Jarkko Hietaniemi on 9/1998
29
e8c10df3 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
ba51d756 35# Let's assume we want to use 'cc -n32' by default, unless the
36# necessary libm is missing (which has happened at least twice)
85f483a2 37case "$cc" in
38'')
ba51d756 39 if test -f /usr/lib32/libm.so
40 then
41 cc='cc -n32'
42 fi ;;
85f483a2 43esac
44
45# Check for which compiler we're using
46
e8c10df3 47case "$cc" in
48*"cc -n32"*)
85f483a2 49
29c7c2ae 50 # Perl 5.004_57 introduced new qsort code into pp_ctl.c that
51 # makes IRIX cc prior to 7.2.1 to emit bad code.
52 # so some serious hackery follows to set pp_ctl flags correctly.
53
85f483a2 54 # Check for which version of the compiler we're running
55 case "`$cc -version 2>&1`" in
56 *7.0*) # Mongoose 7.0
49c3559d 57 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1042,1048,1110,1116,1174,1184,1552 -OPT:Olimit=0"
589615b8 58 optimize='none'
85f483a2 59 ;;
cd25c765 60 *7.1*|*7.2|*7.20) # Mongoose 7.1+
49c3559d 61 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552 -OPT:Olimit=0"
589615b8 62 optimize='-O3'
cd25c765 63# This is a temporary fix for 5.005.
64# Leave pp_ctl_cflags line at left margin for Configure. See
65# hints/README.hints, especially the section
66# =head2 Propagating variables to config.sh
67pp_ctl_cflags='optimize=-O'
29c7c2ae 68 ;;
69 *7.*) # Mongoose 7.2.1+
49c3559d 70 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552 -OPT:Olimit=0:space=ON"
589615b8 71 optimize='-O3'
85f483a2 72 ;;
73 *6.2*) # Ragnarok 6.2
49c3559d 74 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552"
589615b8 75 optimize='none'
85f483a2 76 ;;
77 *) # Be safe and not optimize
49c3559d 78 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552 -OPT:Olimit=0"
85f483a2 79 optimize='none'
80 ;;
81 esac
82
9ea370a7 83# this is to accommodate the 'modules' capability of the
84# 7.2 MIPSPro compilers, which allows for the compilers to be installed
85# in a nondefault location. Almost everything works as expected, but
86# /usr/include isn't caught properly. Hence see the /usr/include/pthread.h
87# change below to include TOOLROOT (a modules environment variable),
88# and the following code. Additional
89# code to accommodate the 'modules' environment should probably be added
90# here if possible, or be inserted as a ${TOOLROOT} reference before
91# absolute paths (again, see the pthread.h change below).
92# -- krishna@sgi.com, 8/23/98
93
94if [ "X${TOOLROOT}" != "X" ]; then
95# we cant set cppflags because it gets overwritten
96# we dont actually need $TOOLROOT/usr/include on the cc line cuz the
97# modules functionality already includes it but
98# XXX - how do I change cppflags in the hints file?
99 ccflags="$ccflags -I${TOOLROOT}/usr/include"
100 usrinc="${TOOLROOT}/usr/include"
101fi
102
589615b8 103 ld=$cc
f5a8bab6 104 # perl's malloc can return improperly aligned buffer
589615b8 105 # usemymalloc='undef'
106malloc_cflags='ccflags="-DSTRICT_ALIGNMENT $ccflags"'
29c7c2ae 107 # NOTE: -L/usr/lib32 -L/lib32 are automatically selected by the linker
108 ldflags=' -L/usr/local/lib32 -L/usr/local/lib'
e8c10df3 109 cccdlflags=' '
ce60aaad 110 # From: David Billinghurst <David.Billinghurst@riotinto.com.au>
111 # If you get complaints about so_locations then change the following
112 # line to something like:
113 # lddlflags="-n32 -shared -check_registry /usr/lib32/so_locations"
e8c10df3 114 lddlflags="-n32 -shared"
115 libc='/usr/lib32/libc.so'
116 plibpth='/usr/lib32 /lib32 /usr/ccs/lib'
117 nm_opt='-p'
118 nm_so_opt='-p'
119 ;;
37c4c505 120*gcc*)
121 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -D_POSIX_C_SOURCE"
122 optimize="-O3"
123 usenm='undef'
2fe73b32 124 case "`uname -s`" in
125 # Without the -mabi=64 gcc in 64-bit IRIX has problems passing
126 # and returning small structures. This affects inet_*() and semctl().
127 # See http://reality.sgi.com/ariel/freeware/gcc-2.8.1-notes.html
128 # for more information. Reported by Lionel Cons <lionel.cons@cern.ch>.
361d830d 129 IRIX64) ccflags="$ccflags -mabi=64"
130 ldflags="$ldflags -mabi=64 -L/usr/lib64"
131 lddlflags="$lddlflags -mabi=64"
132 ;;
dbba660d 133 *) ccflags="$ccflags -DIRIX32_SEMUN_BROKEN_BY_GCC"
134 ;;
2fe73b32 135 esac
37c4c505 136 ;;
e8c10df3 137*)
138 # this is needed to force the old-32 paths
139 # since the system default can be changed.
85f483a2 140 ccflags="$ccflags -32 -D_BSD_TYPES -D_BSD_TIME -Olimit 3100"
141 optimize='-O'
e8c10df3 142 ;;
143esac
c43fed53 144
ca86e6a0 145# Don't groan about unused libraries.
146ldflags="$ldflags -Wl,-woff,84"
147
f5a8bab6 148# We don't want these libraries.
149# Socket networking is in libc, these are not installed by default,
150# and just slow perl down. (scotth@sgi.com)
ecfc5424 151set `echo X "$libswanted "|sed -e 's/ socket / /' -e 's/ nsl / /' -e 's/ dl / /'`
f4cb4c40 152shift
153libswanted="$*"
e8c10df3 154
3ecbdf10 155# Irix 6.5.6 seems to have a broken header <sys/mode.h>
156# don't include that (it doesn't contain S_IFMT, S_IFREG, et al)
157
158i_sysmode="$undef"
159
e8c10df3 160# I have conflicting reports about the sun, crypt, bsd, and PW
161# libraries on Irix 6.2.
162#
163# One user rerports:
164# Don't need sun crypt bsd PW under 6.2. You *may* need to link
165# with these if you want to run perl built under 6.2 on a 5.3 machine
166# (I haven't checked)
ecfc5424 167#
e8c10df3 168# Another user reported that if he included those libraries, a large number
169# of the tests failed (approx. 20-25) and he would get a core dump. To
170# make things worse, test results were inconsistent, i.e., some of the
171# tests would pass some times and fail at other times.
172# The safest thing to do seems to be to eliminate them.
173#
174# Actually, the only libs that you want are '-lm'. Everything else
175# you need is in libc. You do also need '-lbsd' if you choose not
176# to use the -D_BSD_* defines. Note that as of 6.2 the only
177# difference between '-lmalloc' and '-lc' malloc is the debugging
f5a8bab6 178# and control calls, which aren't used by perl. -- scotth@sgi.com
f4cb4c40 179
f5a8bab6 180set `echo X "$libswanted "|sed -e 's/ sun / /' -e 's/ crypt / /' -e 's/ bsd / /' -e 's/ PW / /' -e 's/ malloc / /'`
e8c10df3 181shift
182libswanted="$*"
eb1cfdd6 183
104d25b7 184# This script UU/usethreads.cbu will get 'called-back' by Configure
185# after it has prompted the user for whether to use threads.
186cat > UU/usethreads.cbu <<'EOCBU'
187case "$usethreads" in
188$define|true|[yY]*)
189 if test ! -f ${TOOLROOT}/usr/include/pthread.h -o ! -f /usr/lib/libpthread.so; then
190 case "`uname -r`" in
191 [1-5].*|6.[01])
192 cat >&4 <<EOM
193IRIX `uname -r` does not support POSIX threads.
194You should upgrade to at least IRIX 6.2 with pthread patches.
195EOM
196 ;;
197 6.2)
198 cat >&4 <<EOM
199IRIX 6.2 can have the POSIX threads.
7162771d 200However, the following IRIX patches (or their replacements) MUST be installed:
104d25b7 201 1404 Irix 6.2 Posix 1003.1b man pages
202 1645 IRIX 6.2 & 6.3 POSIX header file updates
203 2000 Irix 6.2 Posix 1003.1b support modules
204 2254 Pthread library fixes
205 2401 6.2 all platform kernel rollup
206IMPORTANT:
207 Without patch 2401, a kernel bug in IRIX 6.2 will
208 cause your machine to panic and crash when running
209 threaded perl. IRIX 6.3 and up should be OK.
210EOM
211 ;;
212 [67].*)
213 cat >&4 <<EOM
214IRIX `uname -r` should have the POSIX threads.
215But, somehow, you do not seem to have them installed.
216EOM
217 ;;
218 esac
219 cat >&4 <<EOM
220Cannot continue, aborting.
221EOM
222 exit 1
223 fi
224 set `echo X "$libswanted "| sed -e 's/ c / pthread /'`
225 ld="${cc:-cc}"
226 shift
227 libswanted="$*"
228
229 usemymalloc='n'
230 ;;
231esac
232EOCBU
233
6b8eaf93 234# The -n32 makes off_t to be 8 bytes, so we should have largefileness.
235
10cc9d2a 236# This script UU/use64bitint.cbu will get 'called-back' by Configure
104d25b7 237# after it has prompted the user for whether to use 64 bits.
10cc9d2a 238cat > UU/use64bitint.cbu <<'EOCBU'
239case "$use64bitint" in
104d25b7 240$define|true|[yY]*)
104d25b7 241 case "`uname -r`" in
242 [1-5]*|6.[01])
243 cat >&4 <<EOM
244IRIX `uname -r` does not support 64-bit types.
245You should upgrade to at least IRIX 6.2.
246Cannot continue, aborting.
247EOM
248 exit 1
249 ;;
250 esac
104d25b7 251 ;;
252esac
253EOCBU