Skip to content

Commit

Permalink
BUG: fix typo which fused two compile flags on Windows for GFortran.
Browse files Browse the repository at this point in the history
Reported in numpygh-6095.
  • Loading branch information
rgommers committed Aug 20, 2015
1 parent 1a576e0 commit 0b39bab
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 0b39bab

Please sign in to comment.