M gnu/packages/commencement.scm => gnu/packages/commencement.scm +2 -4
@@ 3675,7 3675,7 @@ is the GNU Compiler Collection.")
(make-gcc-toolchain gcc-10))
(define-public gcc-toolchain-11
- (make-gcc-toolchain gcc-11))
+ (make-gcc-toolchain gcc-11))
(define-public gcc-toolchain-12
(make-gcc-toolchain gcc-12))
@@ 3691,9 3691,7 @@ is the GNU Compiler Collection.")
;; The default GCC
(define-public gcc-toolchain
- (if (host-hurd64?)
- gcc-toolchain-14
- gcc-toolchain-11))
+ gcc-toolchain-14)
(define-public gcc-toolchain-aka-gcc
;; It's natural for users to try "guix install gcc". This package
M gnu/packages/gcc.scm => gnu/packages/gcc.scm +2 -5
@@ 933,10 933,7 @@ It also includes runtime support libraries for these languages.")
;; Note: When changing the default gcc version, update
;; the gcc-toolchain-* definitions.
-(define-public gcc
- (if (host-hurd64?)
- gcc-14
- gcc-11))
+(define-public gcc gcc-14)
;;;
@@ 1343,7 1340,7 @@ misnomer.")))
;; 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-public libgccjit libgccjit-14)
(define (make-gccgo gcc)
"Return a gccgo package based on GCC."