diff options
author | xoviat <xoviat@users.noreply.github.com> | 2017-08-09 15:27:34 -0500 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2017-09-02 16:56:45 +0300 |
commit | 28248b41b95eff0e2e391edc54b776373f2f4c86 (patch) | |
tree | a5a35d153cd022bc429de9bee1ff4411b33337b1 /numpy/distutils/fcompiler | |
parent | 38a4f85722a0dc7039b7487e28baa86ee041ee11 (diff) | |
download | numpy-28248b41b95eff0e2e391edc54b776373f2f4c86.tar.gz |
distutils: gnu: revert :art:
Diffstat (limited to 'numpy/distutils/fcompiler')
-rw-r--r-- | numpy/distutils/fcompiler/gnu.py | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py index 12c644e8b..1af6d687a 100644 --- a/numpy/distutils/fcompiler/gnu.py +++ b/numpy/distutils/fcompiler/gnu.py @@ -268,19 +268,17 @@ class Gnu95FCompiler(GnuFCompiler): possible_executables = ['gfortran', 'f95'] executables = { - 'version_cmd': ["<F90>", "-dumpversion"], - 'compiler_f77': - [None, "-Wall", "-g", "-ffixed-form", "-fno-second-underscore" - ] + _EXTRAFLAGS, - 'compiler_f90': - [None, "-Wall", "-g", "-fno-second-underscore"] + _EXTRAFLAGS, - '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"] + 'version_cmd' : ["<F90>", "-dumpversion"], + 'compiler_f77' : [None, "-Wall", "-g", "-ffixed-form", + "-fno-second-underscore"] + _EXTRAFLAGS, + 'compiler_f90' : [None, "-Wall", "-g", + "-fno-second-underscore"] + _EXTRAFLAGS, + '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"] } module_dir_switch = '-J' |