1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-18 02:52:10 +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'
[properties]
c_args = ['-Og', '-ggdb']
c_args = ['-Og', '-gstabs']
c_link_args = ['-static', '-static-libgcc']
cpp_args = ['-Og', '-gstabs']

View File

@ -6,7 +6,7 @@ strip = '/usr/bin/x86_64-w64-mingw32-strip'
exe_wrapper = 'wine'
[properties]
c_args = ['-Og', '-ggdb']
c_args = ['-Og', '-gstabs']
c_link_args = ['-static', '-static-libgcc']
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()
@ -19,4 +19,4 @@ lib_dxgi = dxvk_compiler.find_library('dxgi')
lib_d3dcompiler_47 = dxvk_compiler.find_library('d3dcompiler_47')
subdir('src')
subdir('tests')
subdir('tests')