diff options
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 c4f15a073..f3e616e1d 100644 --- a/numpy/distutils/fcompiler/intel.py +++ b/numpy/distutils/fcompiler/intel.py @@ -123,7 +123,7 @@ class IntelEM64TFCompiler(IntelFCompiler): return ['-openmp -fp-model strict -O1'] def get_flags_arch(self): - return ['-xSSE4.2'] + return [''] # Is there no difference in the version string between the above compilers # and the Visual compilers? @@ -205,7 +205,7 @@ class IntelEM64VisualFCompiler(IntelVisualFCompiler): version_match = simple_version_match(start='Intel\(R\).*?64,') def get_flags_arch(self): - return ['/QaxSSE4.2'] + return [''] if __name__ == '__main__': |