8000 Merge pull request #6169 from rgommers/intel-build · numpy/numpy@653a365 · GitHub
[go: up one dir, main page]

Skip to content

Commit 653a365

Browse files
committed
Merge pull request #6169 from rgommers/intel-build
BLD: fix various issues for Intel Fortran and GFortran
2 parents 1dc1bea + 0b39bab commit 653a365

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

numpy/distutils/fcompiler/gnu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def get_flags_opt(self):
215215
# use -mincoming-stack-boundary=2
216216
# due to the change to 16 byte stack alignment since GCC 4.6
217217
# but 32 bit Windows ABI defines 4 bytes stack alignment
218-
opt = ['-O2 -march=core2 -mtune=generic -mfpmath=sse -msse2'
218+
opt = ['-O2 -march=core2 -mtune=generic -mfpmath=sse -msse2 '
219219
'-mincoming-stack-boundary=2']
220220
else:
221221
opt = ['-O2 -march=x86-64 -DMS_WIN64 -mtune=generic -msse2']

numpy/distutils/fcompiler/intel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def get_flags_opt(self):
173173
return ['/O1'] # Scipy test failures with /O2
174174

175175
def get_flags_arch(self):
176-
return ["/arch:IA-32", "/QaxSSE3"]
176+
return ["/arch:IA32", "/QaxSSE3"]
177177

178178
def runtime_library_dir_option(self, dir):
179179
raise NotImplementedError

0 commit comments

Comments
 (0)
0