diff options
Diffstat (limited to 'numpy/distutils/fcompiler/gnu.py')
-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 |