$\1 and serious bug in evalling
[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
e8c10df3 23# Use sh Configure -Dcc='cc -n32' to try compiling with -n32.
24# or -Dcc='cc -n32 -mips3' (or -mips4) to force (non)portability
25# Don't bother with -n32 unless you have the 7.1 or later compilers.
26# But there's no quick and light-weight way to check in 6.2.
f4cb4c40 27
ba51d756 28# Let's assume we want to use 'cc -n32' by default, unless the
29# necessary libm is missing (which has happened at least twice)
85f483a2 30case "$cc" in
31'')
ba51d756 32 if test -f /usr/lib32/libm.so
33 then
34 cc='cc -n32'
35 fi ;;
85f483a2 36esac
37
38# Check for which compiler we're using
39
e8c10df3 40case "$cc" in
41*"cc -n32"*)
85f483a2 42
43 # Check for which version of the compiler we're running
44 case "`$cc -version 2>&1`" in
45 *7.0*) # Mongoose 7.0
46 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1042,1048,1110,1116,1184 -OPT:Olimit=0"
47 optimize='none'
48 ;;
49 *7.*) # Mongoose 7.1+
50 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1184 -OPT:Olimit=0"
51 optimize='-O3'
52 ;;
53 *6.2*) # Ragnarok 6.2
54 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1184"
55 optimize='none'
56 ;;
57 *) # Be safe and not optimize
e8c10df3 58 ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1184 -OPT:Olimit=0"
85f483a2 59 optimize='none'
60 ;;
61 esac
62
63 ld=ld
e8c10df3 64 ldflags=' -L/usr/local/lib -L/usr/lib32 -L/lib32'
65 cccdlflags=' '
66 lddlflags="-n32 -shared"
67 libc='/usr/lib32/libc.so'
68 plibpth='/usr/lib32 /lib32 /usr/ccs/lib'
69 nm_opt='-p'
70 nm_so_opt='-p'
71 ;;
72*)
73 # this is needed to force the old-32 paths
74 # since the system default can be changed.
85f483a2 75 ccflags="$ccflags -32 -D_BSD_TYPES -D_BSD_TIME -Olimit 3100"
76 optimize='-O'
e8c10df3 77 ;;
78esac
c43fed53 79
85f483a2 80# This should be a Configure thing, but not for now...
e8c10df3 81pp_sys_cflags='ccflags="$ccflags -DHAS_TELLDIR_PROTOTYPE"'
16d20bd9 82
83# We don't want these libraries. Anyone know why?
ecfc5424 84set `echo X "$libswanted "|sed -e 's/ socket / /' -e 's/ nsl / /' -e 's/ dl / /'`
f4cb4c40 85shift
86libswanted="$*"
e8c10df3 87
88# I have conflicting reports about the sun, crypt, bsd, and PW
89# libraries on Irix 6.2.
90#
91# One user rerports:
92# Don't need sun crypt bsd PW under 6.2. You *may* need to link
93# with these if you want to run perl built under 6.2 on a 5.3 machine
94# (I haven't checked)
ecfc5424 95#
e8c10df3 96# Another user reported that if he included those libraries, a large number
97# of the tests failed (approx. 20-25) and he would get a core dump. To
98# make things worse, test results were inconsistent, i.e., some of the
99# tests would pass some times and fail at other times.
100# The safest thing to do seems to be to eliminate them.
101#
102# Actually, the only libs that you want are '-lm'. Everything else
103# you need is in libc. You do also need '-lbsd' if you choose not
104# to use the -D_BSD_* defines. Note that as of 6.2 the only
105# difference between '-lmalloc' and '-lc' malloc is the debugging
106# and control calls. -- scotth@sgi.com
f4cb4c40 107
e8c10df3 108set `echo X "$libswanted "|sed -e 's/ sun / /' -e 's/ crypt / /' -e 's/ bsd / /' -e 's/ PW / /'`
109shift
110libswanted="$*"