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