util: build gcc with c++ support

This commit is contained in:
K. Lange 2018-10-12 11:31:07 +09:00
parent 09c407235e
commit fb7ca8cfd3

View File

@ -50,7 +50,7 @@ pushd build
popd
pushd gcc
$DIR/tarballs/gcc-6.4.0/configure --target=i686-pc-toaru --prefix=$PREFIX --with-sysroot=$TOARU_SYSROOT --disable-nls --enable-languages=c --disable-libssp --with-newlib || exit 1
$DIR/tarballs/gcc-6.4.0/configure --target=i686-pc-toaru --prefix=$PREFIX --with-sysroot=$TOARU_SYSROOT --disable-nls --enable-languages=c,c++ --disable-libssp --with-newlib || exit 1
make all-gcc all-target-libgcc
make install-gcc install-target-libgcc
popd