diff options
author | Eric Larson <larson.eric.d@gmail.com> | 2015-12-28 12:46:45 -0500 |
---|---|---|
committer | Eric Larson <larson.eric.d@gmail.com> | 2015-12-28 12:46:45 -0500 |
commit | 7cebe883b612efe2a3bf51b83917ea6cdb8f679f (patch) | |
tree | 743b93442b3fd569536dbcd89e3e70986e4799e2 /numpy/distutils/fcompiler/intel.py | |
parent | 106bfd604607f97754a7107aa00c519c16716261 (diff) | |
download | numpy-7cebe883b612efe2a3bf51b83917ea6cdb8f679f.tar.gz |
FIX: Fix MKL for Linux
Diffstat (limited to 'numpy/distutils/fcompiler/intel.py')
-rw-r--r-- | numpy/distutils/fcompiler/intel.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py index 2dd08e744..ae8bfbed7 100644 --- a/numpy/distutils/fcompiler/intel.py +++ b/numpy/distutils/fcompiler/intel.py @@ -56,7 +56,7 @@ class IntelFCompiler(BaseIntelFCompiler): return ['-fPIC'] def get_flags_opt(self): - return ['-xhost -openmp -fp-model strict'] + return ['-xhost -openmp -fp-model strict -O1'] def get_flags_arch(self): return [] @@ -120,7 +120,7 @@ class IntelEM64TFCompiler(IntelFCompiler): return ['-fPIC'] def get_flags_opt(self): - return ['-openmp -fp-model strict'] + return ['-openmp -fp-model strict -O1'] def get_flags_arch(self): return ['-xSSE4.2'] |