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