From 629d1eef1c8e5b57e56f9be8ff2a343e3d1029f2 Mon Sep 17 00:00:00 2001 From: Giacomo Tesio Date: Sun, 15 Dec 2019 23:35:01 +0100 Subject: [PATCH] gcc cross: configure --without-isl and --disable-nls --- cross/init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cross/init.sh b/cross/init.sh index d4f9cc0..0b392ab 100755 --- a/cross/init.sh +++ b/cross/init.sh @@ -116,7 +116,7 @@ mkdir -p $GCC_BUILD_DIR ( cd gcc && ./contrib/download_prerequisites ) && ( cd gcc/libstdc++-v3 && autoconf -i ) && cd $GCC_BUILD_DIR && - $WORKING_DIR/src/gcc/configure --target=x86_64-jehanne --prefix=/posix/ --with-sysroot=$JEHANNE --enable-languages=c,c++ && + $WORKING_DIR/src/gcc/configure --target=x86_64-jehanne --prefix=/posix/ --with-sysroot=$JEHANNE --enable-languages=c,c++ --without-isl --disable-nls && make all-gcc all-target-libgcc && make DESTDIR=$WORKING_DIR/cross install-gcc install-target-libgcc ) >> $LOG 2>&1