mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-11-30 13:24:10 +01:00
9deb73a2a7
* [dxvk] fixes for MSVC * nullptr -> int is illegal conversion for MSVC. nullptr was replaced with VK_NULL_HANDLE * MSVC does not support source code strings longer than 65535 chars. String was replaced with array of chars. * [utils] fixes for MSVC * __mingw_uuidof() does not exists in MSVC * apply GCC pragma only for GCC * added missing header * [dxbc] fixes for MSVC *added missing header * [dxgi] fixes for MSVC * user __declspec(uuid()) instead of _mingw_uuidof() * do not use DLLEXPORT macro for MSVC * [d3d11] fixes for MSVC * replace WINBOOL with BOOL * do not declare D3D11 structs for MSVC * do not use DLLEXPORT macro for MSVC * [meson] fix build scripts for MSVC * change cpp version from c++1z to c++latest for MSVC * set -DOMINMAX definition for MSVC * disable test and wine_utils for MSVC * use .def files instead of __declspec(dllexport) for MSVC (bypass 'C2375: redefinition; different linkage' error) * fix .def files for MinGW * add --enable-stdcall-fixup linker flag for MinGW
20 lines
506 B
Plaintext
20 lines
506 B
Plaintext
[binaries]
|
|
c = '/usr/bin/i686-w64-mingw32-gcc'
|
|
cpp = '/usr/bin/i686-w64-mingw32-g++'
|
|
ar = '/usr/bin/i686-w64-mingw32-ar'
|
|
strip = '/usr/bin/i686-w64-mingw32-strip'
|
|
exe_wrapper = 'wine'
|
|
|
|
[properties]
|
|
c_args = ['-Og', '-gdwarf-2']
|
|
c_link_args = ['-static', '-static-libgcc']
|
|
|
|
cpp_args = ['-Og', '-gdwarf-2']
|
|
cpp_link_args = ['-static', '-static-libgcc', '-static-libstdc++', '-Wl,--add-stdcall-alias,--enable-stdcall-fixup']
|
|
|
|
[host_machine]
|
|
system = 'windows'
|
|
cpu_family = 'x86'
|
|
cpu = 'x86'
|
|
endian = 'little'
|