mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 11:29:59 +01:00
gnu: %glibc-stripped: Fix cross-compiling to loongarch64.
gnu/packages/make-bootstrap.scm (%glibc-stripped)[inputs]: When target loongarch64, Use linux-libre-headers-5.19.17. Change-Id: I4b2b9168aa3716445d1b88b4db3dcf4ad038a45d
This commit is contained in:
parent
40f5d73395
commit
fffecf715b
1 changed files with 5 additions and 3 deletions
|
@ -475,11 +475,13 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
|
|||
glibc)))))
|
||||
(inputs
|
||||
`(("kernel-headers"
|
||||
,(if (or (and (%current-target-system)
|
||||
,(cond ((or (and (%current-target-system)
|
||||
(target-hurd? (%current-target-system)))
|
||||
(string-suffix? "-hurd" (%current-system)))
|
||||
gnumach-headers
|
||||
linux-libre-headers))))
|
||||
gnumach-headers)
|
||||
;; linux 5.19 include loongarch support.
|
||||
((target-loongarch64?) linux-libre-headers-5.19.17)
|
||||
(else linux-libre-headers)))))
|
||||
(propagated-inputs '())
|
||||
|
||||
;; Only one output.
|
||||
|
|
Loading…
Add table
Reference in a new issue