diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-08-21 10:01:55 -0400 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-08-21 10:01:55 -0400 |
commit | 653a3655a302651b3634e385e515ca11d373f0ff (patch) | |
tree | fe337baac35ac9975ffc5f8efd518015704fc458 /numpy/distutils/fcompiler/gnu.py | |
parent | 1dc1bea0933468127c03830c698669dab584ce5e (diff) | |
parent | 0b39babb0171f6783a5bcd2b9a4f425a75371f4a (diff) | |
download | numpy-653a3655a302651b3634e385e515ca11d373f0ff.tar.gz |
Merge pull request #6169 from rgommers/intel-build
BLD: fix various issues for Intel Fortran and GFortran
Diffstat (limited to 'numpy/distutils/fcompiler/gnu.py')
-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'] |