Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/doitsujin/dxvk.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordhewg <a.heider@gmail.com>2018-11-04 18:18:32 +0300
committerPhilip Rebohle <25567304+doitsujin@users.noreply.github.com>2018-11-04 18:18:32 +0300
commita05c93dd178de722c4e1d257a138fc94c4b877d6 (patch)
treeaae79ee58232ebf7a85514aeccd5f1c00a38cb01 /build-win32.txt
parentb6ded02a5d956d9ff7b9ef3a99ee5ebd2b887131 (diff)
cross build cleanup (#746)
- Don't turn off warnings for winelib builds, fix them. Using __declspec on winelib builds just doesn't make sense. - Drop the custom cross property 'winelib'. Detect it instead. - Move the libdl dependency to the build system - Don't run wine during mingw build process. Same as for wine builds, see 715d2571
Diffstat (limited to 'build-win32.txt')
-rw-r--r--build-win32.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-win32.txt b/build-win32.txt
index 463230e0..0865fc5e 100644
--- a/build-win32.txt
+++ b/build-win32.txt
@@ -3,13 +3,13 @@ c = 'i686-w64-mingw32-gcc'
cpp = 'i686-w64-mingw32-g++'
ar = 'i686-w64-mingw32-ar'
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']
+needs_exe_wrapper = true
[host_machine]
system = 'windows'