diff options
author | Nico Weber <thakis@chromium.org> | 2020-07-29 09:22:02 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-07-29 17:36:38 +0200 |
commit | 06c59cce6f3849ef5d9599de5475c9b6fab98d26 (patch) | |
tree | 7d42881edc1a0d288261ac6c172d28e8548f829c /Toolchain/BuildIt.sh | |
parent | f128d3baf7e010b5cf072eef4586abb2832f867b (diff) | |
download | serenity-06c59cce6f3849ef5d9599de5475c9b6fab98d26.zip |
Toolchain: Strip cc1
Diffstat (limited to 'Toolchain/BuildIt.sh')
-rwxr-xr-x | Toolchain/BuildIt.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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}")" |