aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2024-12-01 19:58:10 +0200
committerEfraim Flashner <efraim@flashner.co.il>2024-12-01 19:58:10 +0200
commit85743578bc5796116f5c597b7be4caebacf38c52 (patch)
tree5d034628708bce87915b9a68b0de28e898ca7e8c
parentd767459ba3068147d361b6b6c8a1eab953358eea (diff)
downloadguix-85743578bc5796116f5c597b7be4caebacf38c52.tar.gz
guix-85743578bc5796116f5c597b7be4caebacf38c52.zip
gnu: ucx: Enable building on riscv64-linux.
* gnu/packages/fabric-management.scm (ucx)[supported-systems]: Add riscv64-linux. Change-Id: I84d506c3ebfd8d4d237a6545ba125f4a037fa821
-rw-r--r--gnu/packages/fabric-management.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/fabric-management.scm b/gnu/packages/fabric-management.scm
index 436fe63fb5..db333cf9f8 100644
--- a/gnu/packages/fabric-management.scm
+++ b/gnu/packages/fabric-management.scm
@@ -242,6 +242,7 @@ memory mechanisms for efficient intra-node communication.")
(home-page "https://www.openucx.org/")
(license bsd-3)
- ;; <ucm/bistro/bistro.h> lists only PowerPC64, AArch64, and x86_64 as
- ;; supported.
- (supported-systems '("x86_64-linux" "aarch64-linux" "powerpc64le-linux"))))
+ ;; <ucm/bistro/bistro.h> lists only PowerPC64, AArch64, RISC-V
+ ;; and x86_64 as supported.
+ (supported-systems '("x86_64-linux" "aarch64-linux" "powerpc64le-linux"
+ "riscv64-linux"))))