BuildSystem: disable nls from gcc

This commit is contained in:
Bananymous 2023-06-05 17:55:47 +03:00
parent d1ad38c8d4
commit efb355c7be
1 changed files with 2 additions and 0 deletions

View File

@ -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