[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/09: build: qemu-command: Add support for powerpc.
From: |
guix-commits |
Subject: |
07/09: build: qemu-command: Add support for powerpc. |
Date: |
Sun, 16 May 2021 03:46:27 -0400 (EDT) |
efraim pushed a commit to branch wip-ppc
in repository guix.
commit 70c65a5750bbd7ee63d10b98442b48709ec007d3
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 253d9bc..88b27ad 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
- branch wip-ppc created (now 5e00d44), guix-commits, 2021/05/16
- 04/09: gnu: binutils: Fix bug in test suite in libiberty., guix-commits, 2021/05/16
- 01/09: gnu: bootstrap: Add support for powerpc-linux., guix-commits, 2021/05/16
- 02/09: gnu: guile-3.0: Fix building on powerpc-linux., guix-commits, 2021/05/16
- 09/09: gnu: nss: Skip tests on powerpc-linux., guix-commits, 2021/05/16
- 03/09: gnu: gcc-boot0: Use 128-bit long-double on powerpc-linux., guix-commits, 2021/05/16
- 08/09: gnu: mercurial: Skip tests on powerpc-linux., guix-commits, 2021/05/16
- 06/09: gnu: Add mac-fdisk., guix-commits, 2021/05/16
- 05/09: gnu: mesa: Add support for powerpc-linux., guix-commits, 2021/05/16
- 07/09: build: qemu-command: Add support for powerpc.,
guix-commits <=