Ticket #49516: gnu.py.diff

File gnu.py.diff, 545 bytes (added by josephsacco, 9 years ago)

patch file for numpy/distfiles/fcompiler/gnu.py

  • gnu.

    old new  
    217217                # but 32 bit Windows ABI defines 4 bytes stack alignment
    218218                opt = ['-O2 -march=core2 -mtune=generic -mfpmath=sse -msse2 '
    219219                       '-mincoming-stack-boundary=2']
    220             else:
     220            elif is_win64():
    221221                opt = ['-O2 -march=x86-64 -DMS_WIN64 -mtune=generic -msse2']
     222            else:
     223                opt = ['-O2']
    222224        else:
    223225            opt = ['-O2']
    224226