From e81347a68b16b8cd408f00780f73607924b1379d Mon Sep 17 00:00:00 2001 From: Martin Lisowski Date: Tue, 7 Jan 2025 15:32:09 +0100 Subject: [PATCH] Don't PARALLEL_BUILD build_core on MSYS(Windows) as it results in occastional deadlocks --- util/build.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/util/build.c b/util/build.c index 8d31200..44b4d6b 100644 --- a/util/build.c +++ b/util/build.c @@ -392,7 +392,12 @@ void BuildUtilities() { } BUILD_UTILITY("render_svg", "-lm", ""); +#ifdef __MSYS__ + // On MSYS/Windows parallel build gets often hung/deadlocked + BUILD_UTILITY("build_core", "-pthread", ""); +#else BUILD_UTILITY("build_core", "-pthread -DPARALLEL_BUILD", ""); +#endif } void Build(int optimise, bool compile) {