diff options
author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-12-10 22:51:59 +0100 |
---|---|---|
committer | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-12-10 23:00:43 +0100 |
commit | fbc5e7fc40919a66a24855430f7b32a304579d0d (patch) | |
tree | f0f7b71955229289d8adafc3f62e46626386cb5c /gnu/packages/valgrind.scm | |
parent | 376d957291ba21bb500b252493d53253ddc4a165 (diff) |
gnu: packages: Remove x86_64-gnu next to i586-gnu from supported-systems.
* gnu/packages/golang.scm (go-1.16)[supported-systems]: Remove "x86_64-gnu".
* gnu/packages/linux.scm (proot)[supported-systems]: Likewise.
* gnu/packages/valgrind.scm (valgrind)[supported-systems]: Likewise.
* gnu/packages/virtualization.scm (qemu)[supported-systems]: Likewise.
* gnu/packages/heads.scm (musl-cross)[supported-systems]: Delete target-hurd?
instead of remove'ing "i586-gnu".
* gnu/packages/linux.scm (net-tools)[supported-systems]: Likewise.
(libcap)[supported-systems]: Likewise.
(fuse)[supported-systems]: Likewise.
(kmod)[supported-systems]: Likewise.
(lvm2)[supported-systems]: Likewise.
(mdadm)[supported-systems]: Likewise.
(proot)[supported-systems]: Likewise.
* gnu/packages/lisp.scm (ecl)[supported-systems]: Likewise.
(sbcl)[supported-systems]: Likewise.
* gnu/packages/virtualization.scm (qemu)[supported-systems]: Likewise.
Change-Id: I506e056b7aeb40f004fcc31ee85962cb065eac29
Diffstat (limited to 'gnu/packages/valgrind.scm')
-rw-r--r-- | gnu/packages/valgrind.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/valgrind.scm b/gnu/packages/valgrind.scm index b50dabf9ca..1bf4975667 100644 --- a/gnu/packages/valgrind.scm +++ b/gnu/packages/valgrind.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2020 Marius Bakke <marius@gnu.org> ;;; Copyright © 2022 Denis Carikli <GNUtoo@cyberdimension.org> ;;; Copyright © 2023 Simon Tournier <zimon.toutoune@gmail.com> +;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -85,7 +86,8 @@ 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 (fold delete %supported-systems - '("i586-gnu" "armhf-linux" "riscv64-linux"))) + '("i586-gnu" "x86_64-gnu" + "armhf-linux" "riscv64-linux"))) (license gpl2+) ;; Hide this variant so end users get the "interactive" Valgrind below. |