From 4a3a352911473a3961720a3521f615f4f2b16dcf Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Thu, 29 Dec 2022 17:58:16 +0900 Subject: [PATCH] Only strip files under the bin directory 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 4745614..bea9afc 100644 --- a/Makefile +++ b/Makefile @@ -199,7 +199,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