From a89c9dfb97ba47722a9f6a771e8a95d659868215 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Sun, 14 Nov 2021 04:31:57 -0300 Subject: [PATCH] common/environment/build-style: remove nostrip from go.sh Hasn't been necessary in Go for a long time [1], so we should take advantage of that. For an example of the advantages, the 'micro' editor went from 15MB to 11MB on disk. [1] https://honnef.co/posts/2016/10/go-and-strip/ --- common/environment/build-style/go.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/common/environment/build-style/go.sh b/common/environment/build-style/go.sh index 6bdf6529a8c9..afa9082c927a 100644 --- a/common/environment/build-style/go.sh +++ b/common/environment/build-style/go.sh @@ -16,7 +16,6 @@ else export GCCGO="${XBPS_CROSS_TRIPLET}-gccgo" fi fi -nostrip=yes case "$XBPS_TARGET_MACHINE" in aarch64*) export GOARCH=arm64;;