8000 ENH: distutils: make msvc + mingw-gfortran work · Pull Request #9431 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

ENH: distutils: make msvc + mingw-gfortran work #9431

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from Sep 2, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
distutils: gnu: revert 🎨
  • Loading branch information
xoviat authored and pv committed Sep 2, 2017
commit fc6e5be678623de1e40102d1c72bcbf187262229
16 changes: 8 additions & 8 deletions numpy/distutils/fcompiler/gnu.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ def version_match(self, version_string):

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
Expand Down
0