Temporary debug commit: include gcc version in configure output. If this doesn't help with reproducing test_float failures then I'll create a separate branch to work on this issue.
diff --git a/configure.in b/configure.in
index 0520ea4..0808c16 100644
--- a/configure.in
+++ b/configure.in
@@ -504,6 +504,13 @@
])
fi
+# If using GCC, give result of 'gcc -v' in configure output.
+if test "$GCC" = yes; then
+AC_MSG_CHECKING(gcc version)
+gcc_version=`$CC -v`
+AC_MSG_RESULT($gcc_version)
+fi
+
# checks for UNIX variants that set C preprocessor variables
AC_AIX