diff --git a/Toolchain/BuildIt.sh b/Toolchain/BuildIt.sh index 510115952d29b7dedb8a277c6ff905d350250c66..fc601b8fd5e31d99b352582dab03bfca40ca56b1 100755 --- a/Toolchain/BuildIt.sh +++ b/Toolchain/BuildIt.sh @@ -280,7 +280,7 @@ pushd "$DIR" # We *most definitely* don't need debug symbols in the linker/compiler. # This cuts the uncompressed size from 1.2 GiB per Toolchain down to about 250 MiB. pushd "Local/libexec/gcc/i686-pc-serenity/${GCC_VERSION}" - for binary in cc1plus lto1; do + for binary in cc1 cc1plus lto1; do echo "Before: $(du -h "${binary}")" strip "${binary}" echo "After: $(du -h "${binary}")"