me
/
guix
Archived
1
0
Fork 0

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.
master
Christopher Baines 2023-05-25 09:45:02 +01:00
parent 36c72c1595
commit e5184ba434
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 3 additions and 1 deletions

View File

@ -24,6 +24,7 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages valgrind) (define-module (gnu packages valgrind)
#:use-module (srfi srfi-1)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix gexp) #: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 management and threading bugs, and profile your programs in detail. You can
also use Valgrind to build new tools.") also use Valgrind to build new tools.")
;; https://valgrind.org/info/platforms.html ;; 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+) (license gpl2+)
;; Hide this variant so end users get the "interactive" Valgrind below. ;; Hide this variant so end users get the "interactive" Valgrind below.