diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2015-08-05 23:36:41 +0200 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2015-08-20 23:06:24 +0200 |
commit | 0b39babb0171f6783a5bcd2b9a4f425a75371f4a (patch) | |
tree | 4d02dc6667c4820c3d9f304c5ec9a16276154205 /numpy/distutils/fcompiler | |
parent | 1a576e0bcc3106c0a9585c996961f3ce9211496b (diff) | |
download | numpy-0b39babb0171f6783a5bcd2b9a4f425a75371f4a.tar.gz |
BUG: fix typo which fused two compile flags on Windows for GFortran.
Reported in gh-6095.
Diffstat (limited to 'numpy/distutils/fcompiler')
-rw-r--r-- | numpy/distutils/fcompiler/gnu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py index f568135c0..a7fd3a77f 100644 --- a/numpy/distutils/fcompiler/gnu.py +++ b/numpy/distutils/fcompiler/gnu.py @@ -215,7 +215,7 @@ class GnuFCompiler(FCompiler): # 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'] |