From: John Stoffel Date: Mon, 13 Jan 1997 09:42:50 +0000 (-0500) Subject: Irix 6.3 & 6.4 and perl5.003_20 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8a1e91d771b51ae31eed1ac5944c63934213fb07;p=p5sagit%2Fp5-mst-13.2.git Irix 6.3 & 6.4 and perl5.003_20 >>>>> "John" == John Stoffel 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> --- diff --git a/hints/irix_6_3.sh b/hints/irix_6_3.sh new file mode 100644 index 0000000..11bd82a --- /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 0000000..b5a9945 --- /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="$*"