summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZheng Junjie <zhengjunjie@iscas.ac.cn>2024-12-02 16:11:46 +0800
committerZheng Junjie <zhengjunjie@iscas.ac.cn>2025-01-16 13:32:49 +0800
commit5ae14eb9c826a76b7df53b5a76c2abed3c177dca (patch)
tree22cf73638b17dd4190f96452115403b486544c64
parent43e391d76c91195f8b6e59f9c7045bb5f8a2ecf5 (diff)
guix: docker: Support riscv64.
* guix/docker.scm (build-docker-image): Add riscv64 case. Change-Id: I4b735dfe299818209341e65876fe736046bb30e7
-rw-r--r--guix/docker.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/guix/docker.scm b/guix/docker.scm
index b33c5824dd..7ab1a46c7b 100644
--- a/guix/docker.scm
+++ b/guix/docker.scm
@@ -4,6 +4,7 @@
;;; Copyright © 2018 Chris Marusich <cmmarusich@gmail.com>
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2023 Oleg Pykhalov <go.wigust@gmail.com>
+;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -317,7 +318,8 @@ added to image as a layer."
("i686" "386")
("arm" "arm")
("aarch64" "arm64")
- ("mips64" "mips64le")))))
+ ("mips64" "mips64le")
+ ("riscv64" "riscv64")))))
;; Make sure we start with a fresh, empty working directory.
(mkdir directory)
(with-directory-excursion directory