z572 pushed a commit to branch master
in repository guix.
commit 7d43134dabbf270a697459de697e899e419719f6
Author: Zheng Junjie <[email protected]>
AuthorDate: Sat Jan 25 00:23:06 2025 +0800
gnu: glibc-dynamic-linker: Add loongarch64-linux support.
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Add loongarch64-linux
case.
Change-Id: I57bb3d34aec82e12de75913c53bf70fc83137404
---
gnu/packages/bootstrap.scm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm
index db20e71fe0..79ef8a5f41 100644
--- a/gnu/packages/bootstrap.scm
+++ b/gnu/packages/bootstrap.scm
@@ -333,6 +333,10 @@ or false to signal an error."
((string=? system "powerpc64-linux") "/lib/ld64.so.1")
((string=? system "alpha-linux") "/lib/ld-linux.so.2")
+ ;; TODO: Remove it when we support native loongarch64 build.
+ ((string=? system "loongarch64-linux")
+ "/lib/ld-linux-loongarch-lp64d.so.1")
+
;; TODO: Differentiate between x86_64-linux-gnu and x86_64-linux-gnux32.
((string=? system "x86_64-linux-gnux32") "/lib/ld-linux-x32.so.2")