1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-02 22:29:16 +01:00

[general] Minor compatibility fixes

This commit is contained in:
Philip Rebohle 2017-12-22 10:37:02 +01:00
parent f301633516
commit cd238df2ca
3 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ strip = '/usr/bin/i686-w64-mingw32-strip'
exe_wrapper = 'wine' exe_wrapper = 'wine'
[properties] [properties]
c_args = ['-Og', '-ggdb'] c_args = ['-Og', '-gstabs']
c_link_args = ['-static', '-static-libgcc'] c_link_args = ['-static', '-static-libgcc']
cpp_args = ['-Og', '-gstabs'] cpp_args = ['-Og', '-gstabs']

View File

@ -6,7 +6,7 @@ strip = '/usr/bin/x86_64-w64-mingw32-strip'
exe_wrapper = 'wine' exe_wrapper = 'wine'
[properties] [properties]
c_args = ['-Og', '-ggdb'] c_args = ['-Og', '-gstabs']
c_link_args = ['-static', '-static-libgcc'] c_link_args = ['-static', '-static-libgcc']
cpp_args = ['-Og', '-gstabs'] cpp_args = ['-Og', '-gstabs']

View File

@ -1,4 +1,4 @@
project('dxvk', ['c', 'cpp'], default_options : ['cpp_std=c++17']) project('dxvk', ['c', 'cpp'], default_options : ['cpp_std=c++1z'])
cpu_family = target_machine.cpu_family() cpu_family = target_machine.cpu_family()