summaryrefslogtreecommitdiff
path: root/numpy/distutils/fcompiler/intel.py
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@gmail.com>2015-08-05 23:12:43 +0200
committerRalf Gommers <ralf.gommers@gmail.com>2015-08-20 22:58:59 +0200
commit1a576e0bcc3106c0a9585c996961f3ce9211496b (patch)
tree57a2a6815e1bcd422a740de8a77e1b76ee5923e0 /numpy/distutils/fcompiler/intel.py
parent630cba17dc452c5b5e0b769525a4f29d0cd6ceba (diff)
downloadnumpy-1a576e0bcc3106c0a9585c996961f3ce9211496b.tar.gz
BUG: fix 32-bit arch flag for Intel Fortran compiler.
See https://software.intel.com/en-us/node/524904. Reported in gh-6095.
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 63436e4ed..ef0bcc30b 100644
--- a/numpy/distutils/fcompiler/intel.py
+++ b/numpy/distutils/fcompiler/intel.py
@@ -173,7 +173,7 @@ class IntelVisualFCompiler(BaseIntelFCompiler):
return ['/O1'] # Scipy test failures with /O2
def get_flags_arch(self):
- return ["/arch:IA-32", "/QaxSSE3"]
+ return ["/arch:IA32", "/QaxSSE3"]
def runtime_library_dir_option(self, dir):
raise NotImplementedError