Skip to content

Commit

Permalink
Merge pull request numpy#6169 from rgommers/intel-build
Browse files Browse the repository at this point in the history
BLD: fix various issues for Intel Fortran and GFortran
  • Loading branch information
charris committed Aug 21, 2015
2 parents 1dc1bea + 0b39bab commit 653a365
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion numpy/distutils/fcompiler/gnu.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def get_flags_opt(self):
# use -mincoming-stack-boundary=2
# due to the change to 16 byte stack alignment since GCC 4.6
# but 32 bit Windows ABI defines 4 bytes stack alignment
opt = ['-O2 -march=core2 -mtune=generic -mfpmath=sse -msse2'
opt = ['-O2 -march=core2 -mtune=generic -mfpmath=sse -msse2 '
'-mincoming-stack-boundary=2']
else:
opt = ['-O2 -march=x86-64 -DMS_WIN64 -mtune=generic -msse2']
Expand Down
2 changes: 1 addition & 1 deletion numpy/distutils/fcompiler/intel.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def get_flags_opt(self):
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
Expand Down

0 comments on commit 653a365

Please sign in to comment.