From 471150224ba5c07da91f3633a7458868eb709402 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6ran=20Karl?= <3951388+JoeKar@users.noreply.github.com> Date: Thu, 1 Jan 2026 16:54:34 +0100 Subject: [PATCH] tools/cross-compile: Drop creation of `Linux 64 fully static` archive Since https://github.com/benweissmann/getmic.ro/pull/40 was merged there is no need to create this superfluous archive any longer. --- tools/cross-compile.sh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tools/cross-compile.sh b/tools/cross-compile.sh index 180c37b0c0..024749b2e0 100755 --- a/tools/cross-compile.sh +++ b/tools/cross-compile.sh @@ -54,14 +54,6 @@ if ./tools/package-deb.sh $VERSION; then fi create_artefact_generic "linux64" -echo "Linux 64 fully static (same as linux64)" -# It is kept for the next release only to support... -# https://github.com/benweissmann/getmic.ro/blob/f90870e948afab8be9ec40884050044b59ed5b7c/index.sh#L197-L204 -# ...and allow a fluent switch via: -# https://github.com/benweissmann/getmic.ro/pull/40 -GOOS=linux GOARCH=amd64 make build -create_artefact_generic "linux64-static" - echo "Linux 32" GOOS=linux GOARCH=386 make build create_artefact_generic "linux32"