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

github.com/jp7677/dxvk-nvapi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArkadiusz Hiler <ahiler@codeweavers.com>2021-09-29 15:00:49 +0300
committerJens Peters <jp7677@gmail.com>2021-09-29 17:56:12 +0300
commitacbcf35e327f2d189e1a9322bc1359a22d36cf6a (patch)
treebb191d087ceaefea286cae9925eddfd36ad0fc5b /build-win32.txt
parentf3dcf222683de18cde3be126fa362cee70a1a48a (diff)
build: Specify ar in the cross files
Without doing this with Meson 0.49 we get: linker = self.cross_info.config['binaries']['ar'] KeyError: 'ar' This is fixed in newer Meson releases but Proton's build system is based on Steam's Soldier runtime that will be stuck on 0.49 for a while.
Diffstat (limited to 'build-win32.txt')
-rw-r--r--build-win32.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/build-win32.txt b/build-win32.txt
index 0a1bda5..7d991cf 100644
--- a/build-win32.txt
+++ b/build-win32.txt
@@ -1,6 +1,7 @@
[binaries]
cpp = 'i686-w64-mingw32-g++'
strip = 'i686-w64-mingw32-strip'
+ar = 'i686-w64-mingw32-ar'
[built-in options]
cpp_args=['-msse', '-msse2']