Configure now tests gcvt() more thoroughly.
[p5sagit/p5-mst-13.2.git] / hints / irix_6_2.sh
index cbb08bb..d406f8a 100644 (file)
@@ -1,25 +1,54 @@
-# irix_6_2.sh
-# from Krishna Sethuraman, krishna@mit.edu
-# Date: Tue Aug 22 00:38:26 PDT 1995
-# removed -ansiposix and -D_POSIX_SOURCE cuz it was choking
+# hints/irix_6_2.sh
+#
+# original from Krishna Sethuraman, krishna@sgi.com
+#
+# Updated Mon Jul 22 14:52:25 EDT 1996
+#      Andy Dougherty <doughera@lafcol.lafayette.edu>
+#      with help from Dean Roehrich <roehrich@cray.com>.
+#   cc -n32 update info from Krishna Sethuraman, krishna@sgi.com.
 
-# Perl built with this hints file under IRIX 6.2 passes
-# all tests (`make test').
+# Use   sh Configure -Dcc='cc -n32' to try compiling with -n32.
 
-ld=ld
-i_time='define'
-cc="cc -32"
-ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -Olimit 3000"
-#ccflags="$ccflags -Olimit 3000" # this line builds perl but not tk (beta 8)
-lddlflags="-32 -shared"
+case "$cc" in
+*"cc -n32"*)
+       ld=ld
+       ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1184 -OPT:fprop_limit=1500"
+       optimize='-g'  # Miniperl core dumps with -O
+       pp_sys_cflags='ccflags="$ccflags -DHAS_TELLDIR_PROTOTYPE"'
+       lddlflags="-n32 -shared"
+       ldflags=' -L/usr/local/lib -L/usr/lib32 -L/lib32'
+       libc='/usr/lib32/libc.so'
+       plibpth='/usr/lib32 /lib32 /usr/ccs/lib'
+
+       nm_opt='-p'
+       nm_so_opt='-p'
+       cccdlflags=' '
+       ;;
+*)
+       ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -Olimit 3000"
+       ;;
+esac
 
 # We don't want these libraries.  Anyone know why?
 set `echo X "$libswanted "|sed -e 's/ socket / /' -e 's/ nsl / /' -e 's/ dl / /'`
 shift
 libswanted="$*"
+
+# I have conflicting reports about the sun, crypt, bsd, and PW
+# libraries on Irix 6.2.
+#
+# One user rerports:
 # Don't need sun crypt bsd PW under 6.2.  You *may* need to link
 # with these if you want to run perl built under 6.2 on a 5.3 machine
 # (I haven't checked)
-#set `echo X "$libswanted "|sed -e 's/ sun / /' -e 's/ crypt / /' -e 's/ bsd / /' -e 's/ PW / /'`
-#shift
-#libswanted="$*"
+#
+# Another user reported that if he included those libraries, a large number
+# of the tests failed (approx. 20-25) and he would get a core dump. To
+# make things worse, test results were inconsistent, i.e., some of the
+# tests would pass some times and fail at other times.
+# The safest thing to do seems to be to eliminate them.
+#
+set `echo X "$libswanted "|sed -e 's/ sun / /' -e 's/ crypt / /' -e 's/ bsd / /' -e 's/ PW / /'`
+shift
+libswanted="$*"
+