Toolchain: Disable libstdc++ PCH compilation

These are not useful for us, and unnecessarily waste time when building
the toolchain. Even if we used libstdc++ more heavily, our use of
uncommon, PCH-affecting flags and our frequent LibC header changes would
make these ineligible for use anyways.
This commit is contained in:
Daniel Bertalan 2023-05-26 20:24:02 +02:00 committed by Andrew Kaster
parent 65a97ad503
commit 6bcd73a2ff
Notes: sideshowbarker 2024-07-17 00:49:59 +09:00

View File

@ -295,6 +295,7 @@ pushd "$DIR/Build/$ARCH"
--target="$TARGET" \
--with-sysroot="$SYSROOT" \
--disable-nls \
--disable-libstdcxx-pch \
--enable-shared \
--enable-languages=c,c++ \
--enable-default-pie \