2013-08-24 04:21:14 -04:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2022-01-28 17:11:02 -05:00
|
|
|
;;; Copyright © 2013, 2014, 2022 Ludovic Courtès <ludo@gnu.org>
|
2015-03-05 17:46:07 -05:00
|
|
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
2015-09-15 18:18:46 -04:00
|
|
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
2022-02-16 07:07:57 -05:00
|
|
|
;;; Copyright © 2016, 2020, 2022 Efraim Flashner <efraim@flashner.co.il>
|
2018-01-18 14:54:26 -05:00
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2020-06-27 06:16:17 -04:00
|
|
|
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
2022-04-25 21:39:12 -04:00
|
|
|
;;; Copyright © 2022 Denis Carikli <GNUtoo@cyberdimension.org>
|
2013-08-24 04:21:14 -04:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages valgrind)
|
|
|
|
#:use-module (guix build-system gnu)
|
2022-04-25 21:39:12 -04:00
|
|
|
#:use-module (guix download)
|
2022-04-25 21:39:13 -04:00
|
|
|
#:use-module (guix gexp)
|
2013-08-24 04:21:14 -04:00
|
|
|
#:use-module (guix licenses)
|
2022-04-25 21:39:12 -04:00
|
|
|
#:use-module (guix packages)
|
2022-04-25 21:39:13 -04:00
|
|
|
#:use-module (guix utils)
|
2022-04-25 21:39:12 -04:00
|
|
|
#:use-module (gnu packages)
|
2022-04-25 21:39:13 -04:00
|
|
|
#:use-module (gnu packages base)
|
2013-08-24 04:21:14 -04:00
|
|
|
#:use-module (gnu packages gdb)
|
2022-04-25 21:39:12 -04:00
|
|
|
#:use-module (gnu packages perl))
|
2013-08-24 04:21:14 -04:00
|
|
|
|
|
|
|
(define-public valgrind
|
|
|
|
(package
|
|
|
|
(name "valgrind")
|
2020-06-27 06:51:34 -04:00
|
|
|
;; Note: check "guix refresh -l -e '(@ (gnu packages valgrind) valgrind)'"
|
|
|
|
;; when updating this package to find which branch it should go to.
|
2021-06-23 23:55:45 -04:00
|
|
|
(version "3.17.0")
|
2013-08-24 04:21:14 -04:00
|
|
|
(source (origin
|
2018-01-18 14:54:26 -05:00
|
|
|
(method url-fetch)
|
2020-04-28 14:07:14 -04:00
|
|
|
(uri (list (string-append "https://sourceware.org/pub/valgrind"
|
2019-03-06 09:42:50 -05:00
|
|
|
"/valgrind-" version ".tar.bz2")
|
|
|
|
(string-append "ftp://sourceware.org/pub/valgrind"
|
|
|
|
"/valgrind-" version ".tar.bz2")))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2021-06-23 23:55:45 -04:00
|
|
|
"18l5jbk301j3462gipqn9bkfx44mdmwn0pwr73r40gl1irkfqfmd"))
|
2019-03-06 10:00:12 -05:00
|
|
|
(patches (search-patches "valgrind-enable-arm.patch"))))
|
2013-08-24 04:21:14 -04:00
|
|
|
(build-system gnu-build-system)
|
2017-08-21 10:19:59 -04:00
|
|
|
(outputs '("doc" ;16 MB
|
|
|
|
"out"))
|
2013-08-24 04:21:14 -04:00
|
|
|
(arguments
|
2020-04-28 14:25:51 -04:00
|
|
|
`(,@(if (string-prefix? "powerpc" (or (%current-target-system)
|
|
|
|
(%current-system)))
|
|
|
|
`(#:make-flags '("CFLAGS+=-maltivec"))
|
|
|
|
'())
|
|
|
|
#:phases
|
2016-10-27 03:16:39 -04:00
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'install 'patch-suppression-files
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
;; Don't assume the FHS.
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(dir (string-append out "/lib/valgrind")))
|
|
|
|
(substitute* (find-files dir "\\.supp$")
|
|
|
|
(("obj:/lib") "obj:*/lib")
|
|
|
|
(("obj:/usr/X11R6/lib") "obj:*/lib")
|
|
|
|
(("obj:/usr/lib") "obj:*/lib"))
|
2017-08-21 10:19:59 -04:00
|
|
|
#t)))
|
|
|
|
(add-after 'install 'install-doc
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((orig (format #f "~a/share/doc" (assoc-ref outputs "out")))
|
|
|
|
(dest (format #f "~a/share" (assoc-ref outputs "doc"))))
|
|
|
|
(mkdir-p dest)
|
|
|
|
(rename-file orig dest)
|
2016-10-27 03:16:39 -04:00
|
|
|
#t))))))
|
2018-01-18 14:54:26 -05:00
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list perl))
|
2020-04-28 14:07:14 -04:00
|
|
|
(home-page "https://www.valgrind.org/")
|
2013-08-24 04:21:14 -04:00
|
|
|
(synopsis "Debugging and profiling tool suite")
|
|
|
|
(description
|
|
|
|
"Valgrind is an instrumentation framework for building dynamic analysis
|
|
|
|
tools. There are Valgrind tools that can automatically detect many memory
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 00:46:59 -04:00
|
|
|
management and threading bugs, and profile your programs in detail. You can
|
2013-08-24 04:21:14 -04:00
|
|
|
also use Valgrind to build new tools.")
|
2022-02-16 07:07:57 -05:00
|
|
|
;; https://valgrind.org/info/platforms.html
|
|
|
|
(supported-systems (delete "riscv64-linux" %supported-systems))
|
2020-06-27 06:16:17 -04:00
|
|
|
(license gpl2+)
|
|
|
|
|
|
|
|
;; Hide this variant so end users get the "interactive" Valgrind below.
|
|
|
|
(properties '((hidden? . #t)))))
|
|
|
|
|
|
|
|
(define-public valgrind/interactive
|
|
|
|
(package/inherit
|
|
|
|
valgrind
|
2022-04-25 21:39:13 -04:00
|
|
|
(version "3.17.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (list (string-append "https://sourceware.org/pub/valgrind"
|
|
|
|
"/valgrind-" version ".tar.bz2")
|
|
|
|
(string-append "ftp://sourceware.org/pub/valgrind"
|
|
|
|
"/valgrind-" version ".tar.bz2")))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"18l5jbk301j3462gipqn9bkfx44mdmwn0pwr73r40gl1irkfqfmd"))
|
|
|
|
(patches (search-patches
|
|
|
|
"valgrind-enable-arm.patch"
|
|
|
|
"valgrind-fix-default-debuginfo-path.patch"))))
|
2020-06-27 06:16:17 -04:00
|
|
|
(inputs
|
|
|
|
;; GDB is needed to provide a sane default for `--db-command'.
|
2022-05-09 05:56:59 -04:00
|
|
|
(list gdb `(,(canonical-package glibc) "debug")))
|
2022-04-25 21:39:13 -04:00
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments (package-arguments valgrind)
|
|
|
|
((#:phases phases #~%standard-phases)
|
|
|
|
#~(modify-phases #$phases
|
|
|
|
(add-before 'configure 'patch-default-debuginfo-path
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
;; This helps Valgrind find the debug symbols of ld.so.
|
|
|
|
;; Without it, Valgrind does not work in a Guix shell
|
|
|
|
;; container and cannot be used as-is during packages tests
|
|
|
|
;; phases.
|
|
|
|
;; TODO: Remove on the next rebuild cycle, when libc is not
|
|
|
|
;; longer fully stripped.
|
|
|
|
(define libc-debug
|
2022-05-09 05:56:59 -04:00
|
|
|
(string-append (ungexp (this-package-input "glibc") "debug")
|
2022-04-25 21:39:13 -04:00
|
|
|
"/lib/debug"))
|
|
|
|
|
|
|
|
(substitute* '("coregrind/m_debuginfo/readelf.c"
|
|
|
|
"docs/xml/manual-core-adv.xml"
|
|
|
|
"docs/xml/manual-core.xml")
|
|
|
|
(("DEFAULT_DEBUGINFO_PATH")
|
|
|
|
libc-debug))
|
|
|
|
;; We also need to account for the bigger path in
|
|
|
|
;; the malloc-ed variables.
|
|
|
|
(substitute* '("coregrind/m_debuginfo/readelf.c")
|
|
|
|
(("DEBUGPATH_EXTRA_BYTES_1")
|
|
|
|
(number->string
|
|
|
|
(+ (string-length libc-debug)
|
|
|
|
(string-length "/.build-id//.debug")
|
|
|
|
1))))
|
|
|
|
(substitute* '("coregrind/m_debuginfo/readelf.c")
|
|
|
|
(("DEBUGPATH_EXTRA_BYTES_2")
|
|
|
|
(number->string
|
|
|
|
(+ (string-length libc-debug)
|
|
|
|
(string-length "/usr/lib/debug")
|
|
|
|
1))))))))))
|
2020-06-27 06:16:17 -04:00
|
|
|
(properties '())))
|
2022-01-28 17:11:02 -05:00
|
|
|
|
|
|
|
(define-public valgrind-3.18
|
|
|
|
(package
|
|
|
|
(inherit valgrind/interactive)
|
|
|
|
(version "3.18.1")
|
|
|
|
(source (origin
|
2022-04-25 21:39:13 -04:00
|
|
|
(inherit (package-source valgrind/interactive))
|
2022-01-28 17:11:02 -05:00
|
|
|
(uri (list (string-append "https://sourceware.org/pub/valgrind"
|
|
|
|
"/valgrind-" version ".tar.bz2")
|
|
|
|
(string-append "ftp://sourceware.org/pub/valgrind"
|
|
|
|
"/valgrind-" version ".tar.bz2")))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2022-04-25 21:39:13 -04:00
|
|
|
"1xgph509i6adv9w2glviw3xrmlz0dssg8992hbvxsbkp7ahrm180"))))))
|