mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-31 05:52:11 +01:00
Use new section for c/cpp args and link_args (#1878)
Using lang_args and lang_links_args in the [properties] section has been deprecated in Meson 0.56. [built-in options] section should be used instead.
This commit is contained in:
parent
f39472a9ba
commit
77af1026e2
@ -4,11 +4,13 @@ cpp = 'i686-w64-mingw32-g++'
|
|||||||
ar = 'i686-w64-mingw32-ar'
|
ar = 'i686-w64-mingw32-ar'
|
||||||
strip = 'i686-w64-mingw32-strip'
|
strip = 'i686-w64-mingw32-strip'
|
||||||
|
|
||||||
[properties]
|
[built-in options]
|
||||||
c_args=['-msse', '-msse2']
|
c_args=['-msse', '-msse2']
|
||||||
cpp_args=['-msse', '-msse2']
|
cpp_args=['-msse', '-msse2']
|
||||||
c_link_args = ['-static', '-static-libgcc']
|
c_link_args = ['-static', '-static-libgcc']
|
||||||
cpp_link_args = ['-static', '-static-libgcc', '-static-libstdc++']
|
cpp_link_args = ['-static', '-static-libgcc', '-static-libstdc++']
|
||||||
|
|
||||||
|
[properties]
|
||||||
needs_exe_wrapper = true
|
needs_exe_wrapper = true
|
||||||
|
|
||||||
[host_machine]
|
[host_machine]
|
||||||
|
@ -4,9 +4,11 @@ cpp = 'x86_64-w64-mingw32-g++'
|
|||||||
ar = 'x86_64-w64-mingw32-ar'
|
ar = 'x86_64-w64-mingw32-ar'
|
||||||
strip = 'x86_64-w64-mingw32-strip'
|
strip = 'x86_64-w64-mingw32-strip'
|
||||||
|
|
||||||
[properties]
|
[built-in options]
|
||||||
c_link_args = ['-static', '-static-libgcc']
|
c_link_args = ['-static', '-static-libgcc']
|
||||||
cpp_link_args = ['-static', '-static-libgcc', '-static-libstdc++']
|
cpp_link_args = ['-static', '-static-libgcc', '-static-libstdc++']
|
||||||
|
|
||||||
|
[properties]
|
||||||
needs_exe_wrapper = true
|
needs_exe_wrapper = true
|
||||||
|
|
||||||
[host_machine]
|
[host_machine]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user