gnu: glibc-dynamic-linker: Add loongarch64-linux support.

* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Add loongarch64-linux
case.

Change-Id: I57bb3d34aec82e12de75913c53bf70fc83137404
This commit is contained in:
Zheng Junjie 2025-01-25 00:23:06 +08:00
parent 71f6ab8eb5
commit 7d43134dab
No known key found for this signature in database
GPG key ID: 3B5AA993E1A2DFF0

View file

@ -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")