z572 pushed a commit to branch master
in repository guix.

commit fffecf715bf0f0f7e1f06cc9add9f0cc70a986db
Author: Zheng Junjie <[email protected]>
AuthorDate: Tue Dec 24 01:11:09 2024 +0800

    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
---
 gnu/packages/make-bootstrap.scm | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index 59c117f226..864d84d89e 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -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.

Reply via email to