From efb355c7be36cac8fe74a9bfdf586f65bfa6b22d Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 5 Jun 2023 17:55:47 +0300 Subject: [PATCH] BuildSystem: disable nls from gcc --- toolchain/build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/toolchain/build.sh b/toolchain/build.sh index c596d085..5b351eea 100755 --- a/toolchain/build.sh +++ b/toolchain/build.sh @@ -50,6 +50,7 @@ if [ ! -f ${PREFIX}/bin/${TARGET}-ld ]; then --target="$TARGET" \ --prefix="$PREFIX" \ --with-sysroot="$SYSROOT" \ + --disable-nls \ --disable-werror make -j $(nproc) @@ -79,6 +80,7 @@ if [ ! -f ${PREFIX}/bin/${TARGET}-g++ ]; then --target="$TARGET" \ --prefix="$PREFIX" \ --with-sysroot="$SYSROOT" \ + --disable-nls \ --enable-languages=c,c++ make -j $(nproc) all-gcc