efraim pushed a commit to branch wip-riscv
in repository guix.
commit b00804c0528ccb88087279fd7ee695c88efe410a
Author: Efraim Flashner <[email protected]>
AuthorDate: Tue Aug 31 10:33:40 2021 +0300
gnu: dtc: Build without valgrind on riscv64-linux.
* gnu/packages/bootloaders.scm (dtc)[native-inputs]: When building for
riscv64-linux don't use valgrind.
---
gnu/packages/bootloaders.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 9c5ae5f..14eb7b1 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -454,7 +454,9 @@ menu to select one of the installed operating systems.")
("libyaml" ,libyaml)
("pkg-config" ,pkg-config)
("swig" ,swig)
- ("valgrind" ,valgrind)))
+ ,@(if (target-riscv?)
+ '()
+ `(("valgrind" ,valgrind)))))
(inputs
`(("python" ,python)))
(arguments