me
/
guix
Archived
1
0
Fork 0

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>
master
Collin J. Doering 2021-11-19 16:12:03 -05:00 committed by Ludovic Courtès
parent ec724d1628
commit 9f00e7429d
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 5 additions and 4 deletions

View File

@ -217,6 +217,7 @@ SRFI-19 time-utc object, as the creation time in metadata."
(cond* ("x86_64" "amd64")
("i686" "386")
("arm" "arm")
("aarch64" "arm64")
("mips64" "mips64le")))))
;; Make sure we start with a fresh, empty working directory.
(mkdir directory)