mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: libgccjit: Remove duplicate libgccjit@11 package.
Fixes a regression introduced in
bfeccd3db9
and caught by
‘tests/packages.scm’, whereby two equivalent but not ‘eq?’ libgccjit@11
packages would be exported.
* gnu/packages/gcc.scm (libgccjit): Make an alias for ‘libgccjit-11’.
Change-Id: I9aeacb7588af5f78af0941e80715665572567958
This commit is contained in:
parent
7979001c58
commit
552a18c24a
1 changed files with 3 additions and 2 deletions
|
@ -1225,8 +1225,9 @@ (define-public libgccjit-11 (make-libgccjit gcc-11))
|
|||
(define-public libgccjit-12 (make-libgccjit gcc-12))
|
||||
(define-public libgccjit-14 (make-libgccjit gcc-14))
|
||||
|
||||
;; Use the 'gcc' variable from above to track the same version.
|
||||
(define-public libgccjit (make-libgccjit gcc))
|
||||
;; This must match the 'gcc' variable, but it must also be 'eq?' to one of the
|
||||
;; libgccjit-* packages above.
|
||||
(define-public libgccjit libgccjit-11)
|
||||
|
||||
(define (make-gccgo gcc)
|
||||
"Return a gccgo package based on GCC."
|
||||
|
|
Loading…
Reference in a new issue