me
/
guix
Archived
1
0
Fork 0

gnu: gcc-toolchain: Do not use gcc-final.

* gnu/packages/commencement.scm (gcc-toolchain): Bind to the default
gcc-toolchain-11 being consitent with others.
(gcc-toolchain-11): Make it from gcc-11.
(gcc-toolchain-aka-gcc): Bind to gcc-toolchain.
master
Simon Tournier 2023-05-09 19:04:04 +02:00 committed by John Kehayias
parent 2d5736cc3e
commit 24b82ad3aa
No known key found for this signature in database
GPG Key ID: 499097AE5EA815D9
1 changed files with 6 additions and 4 deletions

View File

@ -3616,8 +3616,6 @@ is the GNU Compiler Collection.")
("libc-debug" ,libc "debug")
("libc-static" ,libc "static"))))))
(define-public gcc-toolchain
(make-gcc-toolchain gcc-final))
(define-public gcc-toolchain-4.8
(make-gcc-toolchain gcc-4.8))
@ -3644,7 +3642,7 @@ is the GNU Compiler Collection.")
(make-gcc-toolchain gcc-10))
(define-public gcc-toolchain-11
gcc-toolchain)
(make-gcc-toolchain gcc-11))
(define-public gcc-toolchain-12
(make-gcc-toolchain gcc-12))
@ -3652,10 +3650,14 @@ is the GNU Compiler Collection.")
(define-public gcc-toolchain-13
(make-gcc-toolchain gcc-13))
;; The default GCC
(define-public gcc-toolchain
gcc-toolchain-11)
(define-public gcc-toolchain-aka-gcc
;; It's natural for users to try "guix install gcc". This package
;; automatically "redirects" them to 'gcc-toolchain'.
(deprecated-package "gcc" gcc-toolchain-11))
(deprecated-package "gcc" gcc-toolchain))
(define-public gdc-toolchain-10