From be6da3e0dbba035dc55698edfbf7b4139b236d8a Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 2 Jun 2025 11:28:20 +0300 Subject: [PATCH] BuildSystem: Compile gcc with threading support --- toolchain/build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/toolchain/build.sh b/toolchain/build.sh index 1087e427..6e7bed91 100755 --- a/toolchain/build.sh +++ b/toolchain/build.sh @@ -118,6 +118,7 @@ build_gcc () { --prefix="$BANAN_TOOLCHAIN_PREFIX" \ --with-sysroot="$BANAN_SYSROOT" \ --enable-initfini-array \ + --enable-threads=posix \ --enable-shared \ --enable-lto \ --disable-nls \