[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/03: gnu: american-fuzzy-lop: Add support for powerpc-linux.
From: |
guix-commits |
Subject: |
03/03: gnu: american-fuzzy-lop: Add support for powerpc-linux. |
Date: |
Thu, 1 Apr 2021 06:46:04 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit ae15c3fa7ee4e5f6f37ed6faa89df7f797c712e0
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon May 4 22:16:44 2020 +0300
gnu: american-fuzzy-lop: Add support for powerpc-linux.
* gnu/packages/debug.scm (american-fuzzy-lop): Add case for
powerpc-linux.
(qemu-for-american-fuzzy-lop): Same.
---
gnu/packages/debug.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm
index 4ead19c..3a29886 100644
--- a/gnu/packages/debug.scm
+++ b/gnu/packages/debug.scm
@@ -179,6 +179,7 @@ tools that process C/C++ code.")
("aarch64-linux" "aarch64")
("armhf-linux" "arm")
("mips64el-linux" "mips64el")
+ ("powerpc-linux" "ppc")
;; Prevent errors when querying this package on unsupported
;; platforms, e.g. when running "guix package --search="
(_ "UNSUPPORTED"))))
@@ -254,6 +255,7 @@ down the road.")
("aarch64-linux" "aarch64")
("armhf-linux" "arm")
("mips64el-linux" "mips64el")
+ ("powerpc-linux" "ppc")
;; Prevent errors when querying this package on unsupported
;; platforms, e.g. when running "guix package --search="
(_ "UNSUPPORTED"))))