[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/04: gnu: gccgo: Add note about provided go version.
From: |
guix-commits |
Subject: |
01/04: gnu: gccgo: Add note about provided go version. |
Date: |
Sat, 28 Oct 2023 15:04:33 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit beb8365e37334e174ed7f415a79026ef2fe558f2
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Fri Oct 27 21:22:29 2023 +0300
gnu: gccgo: Add note about provided go version.
* gnu/packages/gcc.scm (gccgo-10, gccgo-11, gccgo-12): Add notes about
what version of is provided by these packages.
Change-Id: Id483319e606fdebe1820abeb7e129c580bf2c165
---
gnu/packages/gcc.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index 621644b93f..a903f89dfb 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -1223,12 +1223,15 @@ provides the GNU compiler for the Go programming
language."))
;; a cyclic dependency. <http://debbugs.gnu.org/18101>
#:separate-lib-output? #f))
+;; Provides go-1.14.6
(define-public gccgo-10
(make-gccgo gcc-10))
+;; Provides go-1.16.5
(define-public gccgo-11
(make-gccgo gcc-11))
+;; Provides go-1.18
(define-public gccgo-12
(make-gccgo gcc-12))