diff options
Diffstat (limited to 'hints')
-rw-r--r-- | hints/hpux.sh | 5 | ||||
-rw-r--r-- | hints/mips.sh | 13 | ||||
-rw-r--r-- | hints/next.sh | 4 |
3 files changed, 19 insertions, 3 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh index 83a149ce1e..cab5871429 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -1,4 +1,7 @@ -d_syscall=$undef echo " " echo "NOTE: regression test op.read may fail due to an NFS bug in HP/UX." echo "If so, don't worry about it." +case `(uname -r) 2>/dev/null` in +*3.1*) d_syscall=$undef ;; +*2.1*) libswanted=`echo $libswanted | sed 's/ malloc / /'` ;; +esac diff --git a/hints/mips.sh b/hints/mips.sh index 623b6f080b..ddb2694658 100644 --- a/hints/mips.sh +++ b/hints/mips.sh @@ -1,6 +1,17 @@ -optimize='-g' +cmd_cflags='optimize="-g"' +perl_cflags='optimize="-g"' +tcmd_cflags='optimize="-g"' +tperl_cflags='optimize="-g"' d_volatile=undef d_castneg=undef cc=cc libpth="/usr/lib/cmplrs/cc $libpth" groupstype=int +nm_opts='-B' +case $PATH in +*bsd*:/bin:*) cat <<END +NOTE: Some people have reported having much better luck with Mips CC than +with the BSD cc. Put /bin first in your PATH if you have difficulties. +END +;; +esac diff --git a/hints/next.sh b/hints/next.sh index 6e919cd504..8c77055ba3 100644 --- a/hints/next.sh +++ b/hints/next.sh @@ -1,2 +1,4 @@ : Just disable defaulting to -fpcc-struct-return, since gcc is native compiler. -ccflags="$ccflags " +nativegcc='define' +groupstype="int" +usemymalloc="n" |