summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Taylor <jtaylor.debian@googlemail.com>2014-08-24 17:25:33 +0200
committerJulian Taylor <jtaylor.debian@googlemail.com>2014-08-24 17:25:33 +0200
commit181e72c1ea3a293a5099f4c82b2c1fc934f34a0c (patch)
tree9f6a2c8973a3ddd573399ee6439e3193612829af
parentccfd3bb6c1960628b77f7bd9e3e04aef679bd225 (diff)
parent4c4212b792ffce841ae31d842c0e0a52e285e071 (diff)
downloadnumpy-181e72c1ea3a293a5099f4c82b2c1fc934f34a0c.tar.gz
Merge branch 'gfortran-debug' into maintenance/1.9.x
-rw-r--r--numpy/distutils/fcompiler/gnu.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py
index b786c0a46..bd8217d24 100644
--- a/numpy/distutils/fcompiler/gnu.py
+++ b/numpy/distutils/fcompiler/gnu.py
@@ -252,12 +252,13 @@ class Gnu95FCompiler(GnuFCompiler):
possible_executables = ['gfortran', 'f95']
executables = {
'version_cmd' : ["<F90>", "--version"],
- 'compiler_f77' : [None, "-Wall", "-ffixed-form",
+ 'compiler_f77' : [None, "-Wall", "-g", "-ffixed-form",
"-fno-second-underscore"] + _EXTRAFLAGS,
- 'compiler_f90' : [None, "-Wall", "-fno-second-underscore"] + _EXTRAFLAGS,
- 'compiler_fix' : [None, "-Wall", "-ffixed-form",
+ 'compiler_f90' : [None, "-Wall", "-g",
"-fno-second-underscore"] + _EXTRAFLAGS,
- 'linker_so' : ["<F90>", "-Wall"],
+ 'compiler_fix' : [None, "-Wall", "-g","-ffixed-form",
+ "-fno-second-underscore"] + _EXTRAFLAGS,
+ 'linker_so' : ["<F90>", "-Wall", "-g"],
'archiver' : ["ar", "-cr"],
'ranlib' : ["ranlib"],
'linker_exe' : [None, "-Wall"]