1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-19 23:55:54 +02:00

utils: target-64bit?: Add loongarch64 case.

* guix/utils.scm (target-64bit?): Add loongarch64 case.

Change-Id: Ide3ae539d8717b11b05e410c76c97fa7bbdae008
This commit is contained in:
Zheng Junjie
2025-01-25 11:09:11 +08:00
parent 137e7eb683
commit b1e6fd8278
+1 -1
View File
@@ -839,7 +839,7 @@ architecture (x86_64) using 32-bit data types?"
(define* (target-64bit? #:optional (system (or (%current-target-system)
(%current-system))))
(any (cut string-prefix? <> system) '("x86_64" "aarch64" "mips64"
"powerpc64" "riscv64")))
"powerpc64" "riscv64" "loongarch64")))
(define* (target-little-endian? #:optional (target (or (%current-target-system)
(%current-system))))