diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-12-14 20:23:39 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-12-16 18:05:57 +0200 |
commit | e9e08b02b5eb7eaaf2af2f381505c720fefec54c (patch) | |
tree | ad785429538de50b86e7cadf4709188f762a5c53 /gnu | |
parent | 580a7cc5a9291e5258bf0814ea58d53c1992cefb (diff) | |
download | guix-e9e08b02b5eb7eaaf2af2f381505c720fefec54c.tar.gz guix-e9e08b02b5eb7eaaf2af2f381505c720fefec54c.zip |
gnu: valgrind: Mark as unsupported on i586-gnu.
* gnu/packages/valgrind.scm (valgrind)[supported-systems]: Remove
i586-gnu from supported systems.
Change-Id: I260b9b343c30da81d0420c92431d56d22c260cc4
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/valgrind.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/valgrind.scm b/gnu/packages/valgrind.scm index 0811ac05cc..06622548a5 100644 --- a/gnu/packages/valgrind.scm +++ b/gnu/packages/valgrind.scm @@ -85,7 +85,7 @@ 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 - '("armhf-linux" "riscv64-linux"))) + '("i586-gnu" "armhf-linux" "riscv64-linux"))) (license gpl2+) ;; Hide this variant so end users get the "interactive" Valgrind below. |