From 2073218ef6a0d49260491c2922383375c7b590a8 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 4 May 2020 22:24:51 +0300 Subject: build: qemu-command: Add support for powerpc. * gnu/build/vm.scm (qemu-command): Add missing case for powerpc. --- gnu/build/vm.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/build/vm.scm b/gnu/build/vm.scm index 253d9bcd31..88b27adb4f 100644 --- a/gnu/build/vm.scm +++ b/gnu/build/vm.scm @@ -75,6 +75,7 @@ (define* (qemu-command #:optional (system %host-type)) (cond ((string-match "^i[3456]86$" cpu) "i386") ((string-match "armhf" cpu) "arm") + ((string-match "^powerpc$" cpu) "ppc") (else cpu))))) (define* (load-in-linux-vm builder -- cgit v1.2.3