eth0s/toolchain/99-cleaning

12 lines
297 B
Text
Raw Normal View History

name=cleaning
2018-12-01 00:12:45 +08:00
build() {
strip --strip-debug /tools/lib/* || true
/usr/bin/strip --strip-unneeded /tools/{,s}bin/* || true
rm -rf /tools{,/share}/{info,man,doc}
find /tools/{lib,libexec} -name \*.la -delete
2018-12-01 00:12:45 +08:00
2020-06-28 23:38:04 +08:00
strip --strip-debug /tools/lib32/* || true
find /tools/lib32 -name \*.la -delete
}