From 02d0898a239d301ad5519074c62b9a3eb3b9cb92 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Wed, 11 Nov 2020 16:12:43 +0100 Subject: [PATCH] Move linking arguments in cross-wine.conf Putting these in [properties] has been deprecated as of Meson 0.56.0. --- cross-wine.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cross-wine.conf b/cross-wine.conf index f6451855..1033d8d7 100644 --- a/cross-wine.conf +++ b/cross-wine.conf @@ -7,6 +7,9 @@ strip = 'strip' pkgconfig = 'pkg-config' [properties] +needs_exe_wrapper = true + +[built-in options] # Instead of specifying the target architecture below, we'll do this directly in # the meson.build file. By setting the `-m64` flags there (or `-m32`), we can # build both the regular 64-bit version of the host application and the 32-bit @@ -15,7 +18,6 @@ pkgconfig = 'pkg-config' # cross compiling to multiple targets at once. # https://github.com/mesonbuild/meson/issues/5125 cpp_link_args = ['-mwindows'] -needs_exe_wrapper = true # For instance, this should be in the 64-bit only cross-file # c_args = ['-m64']