From: Jarkko Hietaniemi Date: Tue, 2 May 2000 22:24:31 +0000 (+0000) Subject: Unicos hint tweak. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a20e3af3265360798a79dcde782ad9fc7f468461;p=p5sagit%2Fp5-mst-13.2.git Unicos hint tweak. p4raw-id: //depot/cfgperl@6052 --- diff --git a/hints/unicos.sh b/hints/unicos.sh index 43045ff..12a809d 100644 --- a/hints/unicos.sh +++ b/hints/unicos.sh @@ -2,10 +2,13 @@ case `uname -r` in 6.1*) shellflags="-m+65536" ;; esac case "$optimize" in -# if we used fastmd (the default) integer values would be limited to 43 bits +# If we used fastmd (the default) integer values would be limited to 43 bits. # --Mark P. Lutz -'') optimize="-h nofastmd" ;; +'') optimize="$optimize -h nofastmd" ;; esac +# The default is to die on math overflows with an runtime error. +# Let's not do that. --jhi +ccflags="$ccflags -h matherr=errno" # Avoid an optimizer bug where a volatile variables # isn't correctly saved and restored --Mark P. Lutz pp_ctl_cflags='ccflags="$ccflags -h scalar0 -h vector0"'