Skip to content

Commit b23690e

Browse files
committed
guix: use GCC 12.4.0 over 12.3.0
Our patch might be merged upstream soon: https://lists.gnu.org/archive/html/guix-patches/2024-06/msg01025.html. In the mean time, it's easy us for us to use the newer version of GCC.
1 parent 8b41ede commit b23690e

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

contrib/guix/manifest.scm

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
(guix build-system gnu)
2626
(guix build-system python)
2727
(guix build-system trivial)
28+
(guix download)
2829
(guix gexp)
2930
(guix git-download)
3031
((guix licenses) #:prefix license:)
@@ -91,7 +92,18 @@ chain for " target " development."))
9192
(home-page (package-home-page xgcc))
9293
(license (package-license xgcc)))))
9394

94-
(define base-gcc gcc-12)
95+
(define base-gcc
96+
(package
97+
(inherit gcc-12) ;; 12.3.0
98+
(version "12.4.0")
99+
(source (origin
100+
(method url-fetch)
101+
(uri (string-append "mirror://gnu/gcc/gcc-"
102+
version "/gcc-" version ".tar.xz"))
103+
(sha256
104+
(base32
105+
"0xcida8l2wykvvzvpcrcn649gj0ijn64gwxbplacpg6c0hk6akvh"))))))
106+
95107
(define base-linux-kernel-headers linux-libre-headers-6.1)
96108

97109
(define* (make-bitcoin-cross-toolchain target

0 commit comments

Comments
 (0)