summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Stoffel <jfs@fluent.com>1997-01-13 04:42:50 -0500
committerChip Salzenberg <chip@atlantic.net>1997-01-16 07:24:00 +1200
commit8a1e91d771b51ae31eed1ac5944c63934213fb07 (patch)
tree829caa0dde9c19aafbdeced7c8ffd3bbae91ffec
parent9a3e71f668bd84b1cf53dd3ea10f588d59ecfebb (diff)
downloadperl-8a1e91d771b51ae31eed1ac5944c63934213fb07.tar.gz
Irix 6.3 & 6.4 and perl5.003_20
>>>>> "John" == John Stoffel <jfs@fluent.com> writes: John> With a little bit of work I've gotten perl5.003_20 to compile John> and pass all tests under Irix 6.4 on an Origin2000 box. The John> trick is to realize that 'nm' output can't be parsed on this John> machine. Here's the hints file to use for _21 when it's John> released. Chip et al, I've also gotten it to compile and pass all tests under Irix 6.3 on an O2, but I had to make some additions. I've put both hints files below, which are the same except for the comments really, but in case they need any changes, they can be made pretty easily now. p5p-msgid: <199701132242.RAA14601@jfs.Fluent.COM>
-rw-r--r--hints/irix_6_3.sh16
-rw-r--r--hints/irix_6_4.sh16
2 files changed, 32 insertions, 0 deletions
diff --git a/hints/irix_6_3.sh b/hints/irix_6_3.sh
new file mode 100644
index 0000000000..11bd82ac38
--- /dev/null
+++ b/hints/irix_6_3.sh
@@ -0,0 +1,16 @@
+# hints/irix_6_3.sh
+#
+# Created by John Stoffel (jfs@fluent.com), 01/13/1997
+# Based on the Irix 6.2 hints file, but simplified.
+
+# Configure can't parse 'nm' output on Irix 6.3
+usenm='n'
+
+# This keeps optimizer warnings quiet.
+ccflags="$ccflags -Olimit 3000"
+
+# Gets rid of some extra libs that don't seem to be really needed.
+# See the Irix 6.2 hints file for some justifications.
+set `echo X "$libswanted "|sed -e 's/ sun / /' -e 's/ crypt / /' -e 's/ bsd / /' -e 's/ PW / /' -e 's/ dl / /' -e 's/ socket / /' -e 's/ nsl / /'`
+shift
+libswanted="$*"
diff --git a/hints/irix_6_4.sh b/hints/irix_6_4.sh
new file mode 100644
index 0000000000..b5a994525a
--- /dev/null
+++ b/hints/irix_6_4.sh
@@ -0,0 +1,16 @@
+# hints/irix_6_4.sh
+#
+# Created by John Stoffel (jfs@fluent.com), 01/13/1997
+# Based on the Irix 6.2 hints file, but simplified.
+
+# Configure can't parse 'nm' output on Irix 6.4
+usenm='n'
+
+# This keeps optimizer warnings quiet.
+ccflags="$ccflags -Olimit 3000"
+
+# Gets rid of some extra libs that don't seem to be really needed.
+# See the Irix 6.2 hints file for some justifications.
+set `echo X "$libswanted "|sed -e 's/ sun / /' -e 's/ crypt / /' -e 's/ bsd / /' -e 's/ PW / /' -e 's/ dl / /' -e 's/ socket / /' -e 's/ nsl / /'`
+shift
+libswanted="$*"