From 3a3771d6cdf7805454ef30322d491ad7bc763bb2 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Tue, 3 Jan 2023 20:08:10 +0900 Subject: [PATCH] Only strip files under the bin directory (#275) Stripping other files (eg. *.a) doesn't seem the original intention and it sometimes has ill effects like breaking archive TOC. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 08a4b6f..88c9f66 100644 --- a/Makefile +++ b/Makefile @@ -200,7 +200,7 @@ build/config.BUILT: build: build/llvm.BUILT build/wasi-libc.BUILT build/compiler-rt.BUILT build/libcxx.BUILT build/config.BUILT strip: build/llvm.BUILT - ./strip_symbols.sh $(BUILD_PREFIX) + ./strip_symbols.sh $(BUILD_PREFIX)/bin package: build/package.BUILT