guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: valgrind: Mark as not supported for armhf-linux.


From: guix-commits
Subject: 01/02: gnu: valgrind: Mark as not supported for armhf-linux.
Date: Thu, 25 May 2023 04:57:07 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit e5184ba4349a66db24c5723c5a29befca6bcd338
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Thu May 25 09:45:02 2023 +0100

    gnu: valgrind: Mark as not supported for armhf-linux.
    
    From the build log:
      checking for a supported CPU... no (arm)
      configure: error: Unsupported host architecture. Sorry
    
    * gnu/packages/valgrind.scm (valgrind)[supported-systems]: Remove 
armhf-linux.
---
 gnu/packages/valgrind.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/valgrind.scm b/gnu/packages/valgrind.scm
index 7203745034..ee39bb2fb0 100644
--- a/gnu/packages/valgrind.scm
+++ b/gnu/packages/valgrind.scm
@@ -24,6 +24,7 @@
 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (gnu packages valgrind)
+  #:use-module (srfi srfi-1)
   #:use-module (guix build-system gnu)
   #:use-module (guix download)
   #:use-module (guix gexp)
@@ -83,7 +84,8 @@ tools.  There are Valgrind tools that can automatically 
detect many memory
 management and threading bugs, and profile your programs in detail.  You can
 also use Valgrind to build new tools.")
     ;; https://valgrind.org/info/platforms.html
-    (supported-systems (delete "riscv64-linux" %supported-systems))
+    (supported-systems (fold delete %supported-systems
+                             '("armhf-linux" "riscv64-linux")))
     (license gpl2+)
 
     ;; Hide this variant so end users get the "interactive" Valgrind below.



reply via email to

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