6d22d524b016156907cfc1ca01e4c8898f478f60
[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 # Use   sh Configure -Dcc='cc -n32' to try compiling with -n32.
27 #     or -Dcc='cc -n32 -mips3' (or -mips4) to force (non)portability
28 # Don't bother with -n32 unless you have the 7.1 or later compilers.
29 #     But there's no quick and light-weight way to check in 6.2.
30
31 # Let's assume we want to use 'cc -n32' by default, unless the
32 # necessary libm is missing (which has happened at least twice)
33 case "$cc" in
34 '')
35     if test -f /usr/lib32/libm.so
36     then
37         cc='cc -n32'
38     fi ;;
39 esac
40
41 # Check for which compiler we're using
42
43 case "$cc" in
44 *"cc -n32"*)
45
46         # Check for which version of the compiler we're running
47         case "`$cc -version 2>&1`" in
48         *7.0*)                        # Mongoose 7.0
49              ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1042,1048,1110,1116,1184 -OPT:Olimit=0"
50              optimize='none'      
51              ;;
52         *7.*)                         # Mongoose 7.1+
53              ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1184 -OPT:Olimit=0"
54              optimize='-O3'       
55              ;;
56         *6.2*)                        # Ragnarok 6.2
57              ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1184"
58              optimize='none'      
59              ;;
60         *)                            # Be safe and not optimize
61         ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1184 -OPT:Olimit=0"
62              optimize='none'
63              ;;
64         esac
65
66         ld=ld
67         ldflags=' -L/usr/local/lib -L/usr/lib32 -L/lib32'
68         cccdlflags=' '
69     # From: David Billinghurst <David.Billinghurst@riotinto.com.au>
70     # If you get complaints about so_locations then change the following
71     # line to something like:
72     #   lddlflags="-n32 -shared -check_registry /usr/lib32/so_locations"
73         lddlflags="-n32 -shared"
74         libc='/usr/lib32/libc.so'
75         plibpth='/usr/lib32 /lib32 /usr/ccs/lib'
76         nm_opt='-p'
77         nm_so_opt='-p'
78         ;;
79 *)
80         # this is needed to force the old-32 paths
81         #  since the system default can be changed.
82         ccflags="$ccflags -32 -D_BSD_TYPES -D_BSD_TIME -Olimit 3100"
83         optimize='-O'     
84         ;;
85 esac
86
87 # This should be a Configure thing, but not for now...
88 pp_sys_cflags='ccflags="$ccflags -DHAS_TELLDIR_PROTOTYPE"'
89
90 # We don't want these libraries.  Anyone know why?
91 set `echo X "$libswanted "|sed -e 's/ socket / /' -e 's/ nsl / /' -e 's/ dl / /'`
92 shift
93 libswanted="$*"
94
95 # I have conflicting reports about the sun, crypt, bsd, and PW
96 # libraries on Irix 6.2.
97 #
98 # One user rerports:
99 # Don't need sun crypt bsd PW under 6.2.  You *may* need to link
100 # with these if you want to run perl built under 6.2 on a 5.3 machine
101 # (I haven't checked)
102 #
103 # Another user reported that if he included those libraries, a large number
104 # of the tests failed (approx. 20-25) and he would get a core dump. To
105 # make things worse, test results were inconsistent, i.e., some of the
106 # tests would pass some times and fail at other times.
107 # The safest thing to do seems to be to eliminate them.
108 #
109 #  Actually, the only libs that you want are '-lm'.  Everything else
110 # you need is in libc.  You do also need '-lbsd' if you choose not
111 # to use the -D_BSD_* defines.  Note that as of 6.2 the only
112 # difference between '-lmalloc' and '-lc' malloc is the debugging
113 # and control calls. -- scotth@sgi.com
114
115 set `echo X "$libswanted "|sed -e 's/ sun / /' -e 's/ crypt / /' -e 's/ bsd / /' -e 's/ PW / /'`
116 shift
117 libswanted="$*"
118
119 # Perl 5.004_57 introduced new qsort code into pp_ctl.c that
120 # makes IRIX 6.2 cc to emit bad code.
121 pp_ctl_cflags='optimize=-O'
122
123 if [ "X$usethreads" != "X" ]; then
124     if test ! -f /usr/include/pthread.h -o ! -f /usr/lib/libpthread.so; then
125         uname_r=`uname -r`
126         case "`uname -r`" in
127         6.0|6.1)
128             echo >&4 "IRIX $uname_r does not have the POSIX threads."
129             echo >&4 "You should upgrade to at least IRIX 6.3."
130             echo >&4 "Cannot continue, aborting."
131             exit 1
132             ;;
133         6.2)
134             echo >&4 ""
135 cat >&4 <<EOF
136 IRIX 6.2 $uname_r can have the POSIX threads.
137 The following IRIX patches must, however, be installed:
138
139         1404 Irix 6.2 Posix 1003.1b man pages
140         1645 IRIX 6.2 & 6.3 POSIX header file updates
141         2000 Irix 6.2 Posix 1003.1b support modules
142         2254 Pthread library fixes
143         2401 6.2 all platform kernel rollup
144 IMPORTANT:
145         Without patch 2401, a kernel bug in IRIX 6.2 will
146         cause your machine to panic and crash when running
147         threaded perl. IRIX 6.3 and up should be OK.
148
149
150 Cannot continue, aborting.
151 EOF
152             exit 1
153             ;;
154         6.*|7.*)
155             echo >&4 "IRIX $uname_r should have the POSIX threads."
156             echo >&4 "But somehow you do not seem to have them installed."
157             echo >&4 "Cannot continue, aborting."
158             exit 1
159             ;;
160         esac
161         unset uname_r
162     fi
163     ccflags="-DUSE_THREADS $ccflags"
164     cppflags="-DUSE_THREADS $cppflags"
165     # -lpthread needs to come before -lc but after other libraries such
166     # as -lgdbm and such like. We assume here that -lc is present in
167     # libswanted. If that fails to be true in future, then this can be
168     # changed to add pthread to the very end of libswanted.
169     set `echo X "$libswanted "| sed -e 's/ c / pthread /'`
170     ld="cc"
171     shift
172     libswanted="$*"
173     usemymalloc='n'
174 fi