Get gcc to do strict IEEE math. This flag was already used for cc, just not
gcc. Without this flag, doing pretty much anything with NaNs causes
a Floating Point Exception signal. This causes the interpreter to quit.
The failing tests this fixes are: test_long.
This is somewhat equivalent to doing signal(SIGFPE, SIG_IGN).
*Release date: DD-MMM-2006*
+Core and builtins
+-----------------
+
+Extension Modules
+-----------------
+
Library
-------
raise an exception some day. But dicts have been allowed, and "mostly
worked", so support for them won't go away without warning.
+Tools/Demos
+-----------
+
+Build
+-----
+
+- Fix test_long failure on Tru64 with gcc by using -mieee gcc option.
+
What's New in Python 2.4.3?
===========================
#! /bin/sh
-# From configure.in Revision: 41985 .
+# From configure.in Revision: 43158 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for python 2.4.
#
Darwin*)
BASECFLAGS="$BASECFLAGS -Wno-long-double -no-cpp-precomp -mno-fused-madd"
;;
+ OSF*)
+ BASECFLAGS="$BASECFLAGS -mieee"
+ ;;
esac
;;
Darwin*)
BASECFLAGS="$BASECFLAGS -Wno-long-double -no-cpp-precomp -mno-fused-madd"
;;
+ OSF*)
+ BASECFLAGS="$BASECFLAGS -mieee"
+ ;;
esac
;;