From 06c59cce6f3849ef5d9599de5475c9b6fab98d26 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Wed, 29 Jul 2020 09:22:02 -0400 Subject: [PATCH] Toolchain: Strip cc1 --- Toolchain/BuildIt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Toolchain/BuildIt.sh b/Toolchain/BuildIt.sh index 510115952d..fc601b8fd5 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}")"