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:
Ludovic Courtès 2024-09-16 22:42:39 +02:00
parent 7979001c58
commit 552a18c24a
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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."