summaryrefslogtreecommitdiff
path: root/numpy/distutils/fcompiler/intel.py
diff options
context:
space:
mode:
authorChristoph Gohlke <cgohlke@uci.edu>2015-10-09 16:44:39 -0700
committerChristoph Gohlke <cgohlke@uci.edu>2015-10-09 16:44:39 -0700
commit95be11191f413ae06ab9baff0cf12e9d7978ed36 (patch)
tree34f88c1c9926f9592cb34d4e87e5a2171d39b1af /numpy/distutils/fcompiler/intel.py
parent14761c881934b0fbe1955c49a1d3afd73955d7fb (diff)
downloadnumpy-95be11191f413ae06ab9baff0cf12e9d7978ed36.tar.gz
BLD: do not build exclusively for SSE4.2 processors
Diffstat (limited to 'numpy/distutils/fcompiler/intel.py')
-rw-r--r--numpy/distutils/fcompiler/intel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py
index 28624918d..2dd08e744 100644
--- a/numpy/distutils/fcompiler/intel.py
+++ b/numpy/distutils/fcompiler/intel.py
@@ -205,7 +205,7 @@ class IntelEM64VisualFCompiler(IntelVisualFCompiler):
version_match = simple_version_match(start='Intel\(R\).*?64,')
def get_flags_arch(self):
- return ['/QxSSE4.2']
+ return ['/QaxSSE4.2']
if __name__ == '__main__':