summaryrefslogtreecommitdiff
path: root/numpy/distutils/intelccompiler.py
diff options
context:
space:
mode:
authorChristoph Gohlke <cgohlke@uci.edu>2015-10-09 16:42:07 -0700
committerChristoph Gohlke <cgohlke@uci.edu>2015-10-09 16:42:07 -0700
commit14761c881934b0fbe1955c49a1d3afd73955d7fb (patch)
treeb5bb5a17fe6ed24084af6a06f1e5288c44d3a426 /numpy/distutils/intelccompiler.py
parent0243bce23383ff5e894b99e40df2f8fd806ad79f (diff)
downloadnumpy-14761c881934b0fbe1955c49a1d3afd73955d7fb.tar.gz
BLD: do not build exclusively for SSE4.2 processors
Diffstat (limited to 'numpy/distutils/intelccompiler.py')
-rw-r--r--numpy/distutils/intelccompiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/intelccompiler.py b/numpy/distutils/intelccompiler.py
index a1f34e304..1f49dc4b4 100644
--- a/numpy/distutils/intelccompiler.py
+++ b/numpy/distutils/intelccompiler.py
@@ -78,7 +78,7 @@ if platform.system() == 'Windows':
self.lib = self.find_exe('xilib')
self.linker = self.find_exe('xilink')
self.compile_options = ['/nologo', '/O3', '/MD', '/W3',
- '/Qstd=c99', '/QxSSE4.2']
+ '/Qstd=c99', '/QaxSSE4.2']
self.compile_options_debug = ['/nologo', '/Od', '/MDd', '/W3',
'/Qstd=c99', '/Z7', '/D_DEBUG']