summaryrefslogtreecommitdiff
path: root/numpy/distutils/fcompiler/intel.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/distutils/fcompiler/intel.py')
-rw-r--r--numpy/distutils/fcompiler/intel.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py
index ae8bfbed7..c4f15a073 100644
--- a/numpy/distutils/fcompiler/intel.py
+++ b/numpy/distutils/fcompiler/intel.py
@@ -55,7 +55,7 @@ class IntelFCompiler(BaseIntelFCompiler):
def get_flags(self):
return ['-fPIC']
- def get_flags_opt(self):
+ def get_flags_opt(self): # Scipy test failures with -O2
return ['-xhost -openmp -fp-model strict -O1']
def get_flags_arch(self):
@@ -119,7 +119,7 @@ class IntelEM64TFCompiler(IntelFCompiler):
def get_flags(self):
return ['-fPIC']
- def get_flags_opt(self):
+ def get_flags_opt(self): # Scipy test failures with -O2
return ['-openmp -fp-model strict -O1']
def get_flags_arch(self):