From a49b0c65ecdfa723002ad57d6ac671e63037c1e7 Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Wed, 20 Apr 2022 01:34:18 +0200 Subject: [PATCH] ci: try to work around some mingw nonsense --- .ci/build-cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/build-cs b/.ci/build-cs index cb80b4e..99d8645 100755 --- a/.ci/build-cs +++ b/.ci/build-cs @@ -45,6 +45,9 @@ case "${expected_triplet}" in case "${expected_triplet}" in *w64*) meson_system="windows" + # hack around std::mutex not existing with the default + export CC="${CC}-posix" + export CXX="${CXX}-posix" ;; *) qemu_cpu="x86_64"