guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/10: build: qemu-command: Add support for powerpc.


From: guix-commits
Subject: 08/10: build: qemu-command: Add support for powerpc.
Date: Thu, 24 Sep 2020 06:39:21 -0400 (EDT)

efraim pushed a commit to branch wip-ppc
in repository guix.

commit a58ab62fab018aa53ca98a599adf79c5df2ae5f6
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon May 4 22:24:51 2020 +0300

    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 287d099..0572b8d 100644
--- a/gnu/build/vm.scm
+++ b/gnu/build/vm.scm
@@ -75,6 +75,7 @@
                    (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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]