diff options
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'] |