diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2004-09-01 08:43:38 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2004-09-01 08:43:38 +0000 |
commit | 4c0b541206aa5a48e27b68857831a53a0dc243a6 (patch) | |
tree | a231f0d24c6c79cc262b80420fd33ced98d5d951 /scipy_distutils/intelfcompiler.py | |
parent | 2f080bcf577a3d641cb1e7cd2069314547c22855 (diff) | |
download | numpy-4c0b541206aa5a48e27b68857831a53a0dc243a6.tar.gz |
Fixed compiler choice for .f files containing f90 code in free format.
Diffstat (limited to 'scipy_distutils/intelfcompiler.py')
-rw-r--r-- | scipy_distutils/intelfcompiler.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scipy_distutils/intelfcompiler.py b/scipy_distutils/intelfcompiler.py index 11af1bee5..9941b6425 100644 --- a/scipy_distutils/intelfcompiler.py +++ b/scipy_distutils/intelfcompiler.py @@ -36,6 +36,9 @@ class IntelFCompiler(FCompiler): opt = self.pic_flags + ["-cm"] return opt + def get_flags_free(self): + return ["-FR"] + def get_flags_opt(self): return ['-O3','-unroll'] @@ -118,6 +121,9 @@ class IntelVisualFCompiler(FCompiler): opt = ['/nologo','/MD','/nbs','/Qlowercase','/us'] return opt + def get_flags_free(self): + return ["-FR"] + def get_flags_debug(self): return ['/4Yb','/d2'] |