gcc cross: configure --without-isl and --disable-nls

This commit is contained in:
Giacomo Tesio 2019-12-15 23:35:01 +01:00
parent f706eca22b
commit 629d1eef1c
1 changed files with 1 additions and 1 deletions

View File

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