1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-02-20 10:54:16 +01:00

[build] Build 32-bit binaries with SSE2 instruction set

This commit is contained in:
Richard Yao 2018-09-28 14:33:42 -04:00 committed by Philip Rebohle
parent de4c88d5aa
commit 6fb09cb9fc
2 changed files with 4 additions and 2 deletions

View File

@ -6,6 +6,8 @@ strip = 'i686-w64-mingw32-strip'
exe_wrapper = 'wine'
[properties]
c_args=['-msse', '-msse2']
cpp_args=['-msse', '-msse2']
c_link_args = ['-static', '-static-libgcc']
cpp_link_args = ['-static', '-static-libgcc', '-static-libstdc++', '-Wl,--add-stdcall-alias,--enable-stdcall-fixup']

View File

@ -8,8 +8,8 @@ strip = 'strip'
needs_exe_wrapper = true
winelib = true
c_args=['-m32']
cpp_args=['-m32', '--no-gnu-unique', '-Wno-attributes']
c_args=['-m32', '-msse', '-msse2']
cpp_args=['-m32', '--no-gnu-unique', '-Wno-attributes', '-msse', '-msse2']
cpp_link_args=['-m32', '-mwindows']
[host_machine]