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

docker: Enable arm64 docker image building for 'guix pack'.

* guix/docker.scm (build-docker-image): Recognize "aarch64".

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Collin J. Doering
2021-11-19 16:12:03 -05:00
committed by Ludovic Courtès
parent ec724d1628
commit 9f00e7429d
+5 -4
View File
@@ -214,10 +214,11 @@ SRFI-19 time-utc object, as the creation time in metadata."
(else
(error "unsupported system"
system)))))))
(cond* ("x86_64" "amd64")
("i686" "386")
("arm" "arm")
("mips64" "mips64le")))))
(cond* ("x86_64" "amd64")
("i686" "386")
("arm" "arm")
("aarch64" "arm64")
("mips64" "mips64le")))))
;; Make sure we start with a fresh, empty working directory.
(mkdir directory)
(with-directory-excursion directory