From f51144e388f5f3c538b39d9a36ed92f47df65316 Mon Sep 17 00:00:00 2001 From: Egor Tsyganchuk Date: Mon, 16 Feb 2026 17:21:01 +0300 Subject: [PATCH] Add --disable-tls option to GCC build configuration for improved compatibility --- build-toolchain.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-toolchain.sh b/build-toolchain.sh index 2471994..5dc573e 100755 --- a/build-toolchain.sh +++ b/build-toolchain.sh @@ -128,7 +128,8 @@ mkdir -p "${BUILD_DIR}/gcc1" && cd "${BUILD_DIR}/gcc1" --without-cloog \ --without-ppl \ --disable-nls \ - --disable-libatomic + --disable-libatomic \ + --disable-tls make -j$(nproc) all-gcc make install-gcc @@ -199,7 +200,8 @@ mkdir -p "${BUILD_DIR}/gcc2" && cd "${BUILD_DIR}/gcc2" --disable-multilib \ --disable-bootstrap \ --disable-libgomp \ - --disable-libatomic + --disable-libatomic \ + --disable-tls make -j$(nproc) make install