This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
5.004 removed deprecated %OVERLOAD support silently
[perl5.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 # 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.
27
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)
30 case "$cc" in
31 '')
32     if test -f /usr/lib32/libm.so
33     then
34         cc='cc -n32'
35     fi ;;
36 esac
37
38 # Check for which compiler we're using
39
40 case "$cc" in
41 *"cc -n32"*)
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
58         ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1184 -OPT:Olimit=0"
59              optimize='none'
60              ;;
61         esac
62
63         ld=ld
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.
75         ccflags="$ccflags -32 -D_BSD_TYPES -D_BSD_TIME -Olimit 3100"
76         optimize='-O'     
77         ;;
78 esac
79
80 # This should be a Configure thing, but not for now...
81 pp_sys_cflags='ccflags="$ccflags -DHAS_TELLDIR_PROTOTYPE"'
82
83 # We don't want these libraries.  Anyone know why?
84 set `echo X "$libswanted "|sed -e 's/ socket / /' -e 's/ nsl / /' -e 's/ dl / /'`
85 shift
86 libswanted="$*"
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)
95 #
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
107
108 set `echo X "$libswanted "|sed -e 's/ sun / /' -e 's/ crypt / /' -e 's/ bsd / /' -e 's/ PW / /'`
109 shift
110 libswanted="$*"