File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 25
25
(guix build-system gnu)
26
26
(guix build-system python)
27
27
(guix build-system trivial)
28
+ (guix download)
28
29
(guix gexp)
29
30
(guix git-download)
30
31
((guix licenses) #:prefix license:)
@@ -91,7 +92,18 @@ chain for " target " development."))
91
92
(home-page (package-home-page xgcc))
92
93
(license (package-license xgcc)))))
93
94
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
+
95
107
(define base-linux-kernel-headers linux-libre-headers-6.1)
96
108
97
109
(define* (make-bitcoin-cross-toolchain target
You can’t perform that action at this time.
0 commit comments