From 2ef74ff260bc2a1d97b5b1e9f3c6273b3f65637b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Mon, 9 May 2022 13:37:06 +0200 Subject: [PATCH] desktop: Only enable btls-lib on Windows Follow-up to #47 and #49. This caused issues on macOS ARM64, see https://github.com/godotengine/build-containers/issues/95. --- desktop.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop.py b/desktop.py index 8130d60..250abc3 100755 --- a/desktop.py +++ b/desktop.py @@ -89,12 +89,12 @@ def setup_desktop_template(env: dict, opts: DesktopOpts, product: str, target_pl '--with-tls=pthread', '--without-ikvm-native', '--enable-btls', - '--enable-btls-lib' ] if target_platform == 'windows': CONFIGURE_FLAGS += [ - '--with-libgdiplus=%s' % opts.mxe_prefix + '--with-libgdiplus=%s' % opts.mxe_prefix, + '--enable-btls-lib', ] else: CONFIGURE_FLAGS += [