diff options
author | xoviat <xoviat@users.noreply.github.com> | 2017-08-09 20:59:40 -0500 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2017-09-02 16:56:45 +0300 |
commit | fc6e5be678623de1e40102d1c72bcbf187262229 (patch) | |
tree | ca26b2f22b12e9191c4f4ddec623785ec9a49fa9 /numpy/distutils/fcompiler | |
parent | b68d4523a8f538f9a160dad9ff3eb94108d4ca33 (diff) | |
download | numpy-fc6e5be678623de1e40102d1c72bcbf187262229.tar.gz |
distutils: gnu: revert :art:
Diffstat (limited to 'numpy/distutils/fcompiler')
-rw-r--r-- | numpy/distutils/fcompiler/gnu.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py index e7cc8d760..2260fd50d 100644 --- a/numpy/distutils/fcompiler/gnu.py +++ b/numpy/distutils/fcompiler/gnu.py @@ -89,14 +89,14 @@ class GnuFCompiler(FCompiler): possible_executables = ['g77', 'f77'] executables = { - 'version_cmd': [None, "-dumpversion"], - 'compiler_f77': [None, "-g", "-Wall", "-fno-second-underscore"], - 'compiler_f90': None, # Use --fcompiler=gnu95 for f90 codes - 'compiler_fix': None, - 'linker_so': [None, "-g", "-Wall"], - 'archiver': ["ar", "-cr"], - 'ranlib': ["ranlib"], - 'linker_exe': [None, "-g", "-Wall"] + 'version_cmd' : [None, "-dumpversion"], + 'compiler_f77' : [None, "-g", "-Wall", "-fno-second-underscore"], + 'compiler_f90' : None, # Use --fcompiler=gnu95 for f90 codes + 'compiler_fix' : None, + 'linker_so' : [None, "-g", "-Wall"], + 'archiver' : ["ar", "-cr"], + 'ranlib' : ["ranlib"], + 'linker_exe' : [None, "-g", "-Wall"] } module_dir_switch = None module_include_switch = None |