From 1a576e0bcc3106c0a9585c996961f3ce9211496b Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Wed, 5 Aug 2015 23:12:43 +0200 Subject: BUG: fix 32-bit arch flag for Intel Fortran compiler. See https://software.intel.com/en-us/node/524904. Reported in gh-6095. --- numpy/distutils/fcompiler/intel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/distutils/fcompiler/intel.py') 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 -- cgit v1.2.1