[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch core-updates updated: gnu: libgccjit: Track the default GCC versi
From: |
guix-commits |
Subject: |
branch core-updates updated: gnu: libgccjit: Track the default GCC version. |
Date: |
Tue, 19 Sep 2023 09:08:11 -0400 |
This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch core-updates
in repository guix.
The following commit(s) were added to refs/heads/core-updates by this push:
new b1c68f37fd gnu: libgccjit: Track the default GCC version.
b1c68f37fd is described below
commit b1c68f37fd37b89ce59a3f06fe44761dc305b545
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Sep 18 17:21:22 2023 +0300
gnu: libgccjit: Track the default GCC version.
* gnu/packages/gcc.scm (libgccjit): Rewrite to use the default gcc
version.
---
gnu/packages/gcc.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index 862fdd79c3..bad96759f0 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -1145,7 +1145,8 @@ misnomer.")))
(define-public libgccjit-11 (make-libgccjit gcc-11))
(define-public libgccjit-12 (make-libgccjit gcc-12))
-(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."
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch core-updates updated: gnu: libgccjit: Track the default GCC version.,
guix-commits <=