ports/math/py-numpy/files/patch-numpy-distutils-fcompiler-gnu.py
Olivier Duchateau d236c1a121 Update to 1.10.0
2015-10-07 03:37:42 +00:00

35 lines
1.4 KiB
Python

--- numpy/distutils/fcompiler/gnu.py.orig 2015-09-13 16:21:27 UTC
+++ numpy/distutils/fcompiler/gnu.py
@@ -83,7 +83,7 @@ class GnuFCompiler(FCompiler):
return None
return v[1]
- possible_executables = ['g77', 'f77']
+ possible_executables = ['%%FC%%', 'g77', 'f77']
executables = {
'version_cmd' : [None, "-dumpversion"],
'compiler_f77' : [None, "-g", "-Wall", "-fno-second-underscore"],
@@ -107,11 +107,13 @@ class GnuFCompiler(FCompiler):
for key in ['version_cmd', 'compiler_f77', 'linker_so', 'linker_exe']:
executables[key].append('-mno-cygwin')
- g2c = 'g2c'
+ g2c = '%%FC%%'
suggested_f90_compiler = 'gnu95'
def get_flags_linker_so(self):
opt = self.linker_so[1:]
+ if 'FFLAGS' in os.environ:
+ opt.append(os.environ['FFLAGS'])
if sys.platform == 'darwin':
target = os.environ.get('MACOSX_DEPLOYMENT_TARGET', None)
# If MACOSX_DEPLOYMENT_TARGET is set, we simply trust the value
@@ -265,7 +267,7 @@ class Gnu95FCompiler(GnuFCompiler):
self.executables[key].append('-mno-cygwin')
return v
- possible_executables = ['gfortran', 'f95']
+ possible_executables = ['%%FC%%', 'gfortran', 'f95']
executables = {
'version_cmd' : ["<F90>", "-dumpversion"],
'compiler_f77' : [None, "-Wall", "-g", "-ffixed-form",