guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit dfcfed24018e9a20f4df2eba97b73321854675cf
Author: Efraim Flashner <[email protected]>
AuthorDate: Tue Aug 19 20:01:07 2025 +0300
gnu: go-1.4: Remove support for aarch64-linux.
* gnu/packages/golang.scm (go-1.4)[arguments]: Remove code setting the
system to armhf-linux when building for aarch64-linux.
[supported-systems]: Remove aarch64-linux.
Change-Id: I7ad6da7b8ddba674433c6efd7b2085b733548d5c
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang.scm | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index f267fdbfec..b9f46b0f04 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -117,10 +117,6 @@
(guix build utils)
(srfi srfi-1))
#:tests? #f ; Tests are run by the all.bash script.
- ,@(if (string-prefix? "aarch64-linux" (or (%current-system)
- (%current-target-system)))
- '(#:system "armhf-linux")
- '())
#:phases
(modify-phases %standard-phases
(delete 'configure)
@@ -246,7 +242,7 @@ programming language designed primarily for systems
programming. Go is a
compiled, statically typed language in the tradition of C and C++, but adds
garbage collection, various safety features, and concurrent programming
features
in the style of communicating sequential processes (@dfn{CSP}).")
- (supported-systems '("x86_64-linux" "i686-linux" "armhf-linux"
"aarch64-linux"))
+ (supported-systems '("x86_64-linux" "i686-linux" "armhf-linux"))
(license license:bsd-3)))
(define-public go-1.16