diff options
author | Efraim Flashner <[email protected]> | 2023-09-18 17:21:22 +0300 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2024-08-31 10:42:05 +0200 |
commit | bfeccd3db9446d45d04d9144698506a61321e1c6 (patch) | |
tree | 06242f0bc9de1504e755816b716f1a9f5661bb6c /gnu | |
parent | dac6c82cf3e5d25b5571cb083f0511460b533217 (diff) |
gnu: libgccjit: Track the default GCC version.
* gnu/packages/gcc.scm (libgccjit): Rewrite to use the default gcc
version.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gcc.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm index cc1e9cca6e..ba5e404d00 100644 --- a/gnu/packages/gcc.scm +++ b/gnu/packages/gcc.scm @@ -1243,7 +1243,8 @@ misnomer."))) (define-public libgccjit-12 (make-libgccjit gcc-12)) (define-public libgccjit-14 (make-libgccjit gcc-14)) -(define-public libgccjit libgccjit-10) +;; Use the 'gcc' variable from above to track the same version. +(define-public libgccjit (make-libgccjit gcc)) (define (make-gccgo gcc) "Return a gccgo package based on GCC." |