[SciPy-dev] Unusual crash
Russel Howe
russel@appliedminds....
Sat Mar 24 20:08:25 CDT 2007
Both DarwinPorts gcc43 gfortran and the hpc binary worked.
hpc: GNU Fortran (GCC) 4.3.0 20070316 (experimental)
DarwinPorts: GNU Fortran (GCC) 4.3.0 20070309 (experimental)
However, both of these have dropped the "95" from the version string,
so I had to make this change to get either to work:
Index: numpy/distutils/fcompiler/gnu.py
===================================================================
--- numpy/distutils/fcompiler/gnu.py (revision 3593)
+++ numpy/distutils/fcompiler/gnu.py (working copy)
@@ -250,7 +250,7 @@
class Gnu95FCompiler(GnuFCompiler):
compiler_type = 'gnu95'
- version_match = simple_version_match(start='GNU Fortran 95')
+ version_match = simple_version_match(start='GNU Fortran (95|\(GCC
\))')
# 'gfortran --version' results:
# Debian: GNU Fortran 95 (GCC 4.0.3 20051023 (prerelease)
(Debian 4.0.2-3))
More information about the Scipy-dev
mailing list