gnu: acme-client: Update to 0.1.15.
[jackhill/guix/guix.git] / gnu / packages / gdb.scm
CommitLineData
fbbb1c0f 1;;; GNU Guix --- Functional package management for GNU
f19b9b96 2;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
5245251e 3;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
a49332a0 4;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
fbbb1c0f
LC
5;;;
6;;; This file is part of GNU Guix.
7;;;
8;;; GNU Guix is free software; you can redistribute it and/or modify it
9;;; under the terms of the GNU General Public License as published by
10;;; the Free Software Foundation; either version 3 of the License, or (at
11;;; your option) any later version.
12;;;
13;;; GNU Guix is distributed in the hope that it will be useful, but
14;;; WITHOUT ANY WARRANTY; without even the implied warranty of
15;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16;;; GNU General Public License for more details.
17;;;
18;;; You should have received a copy of the GNU General Public License
19;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
20
1ffa7090 21(define-module (gnu packages gdb)
b20441f2 22 #:use-module (gnu packages)
1ffa7090
LC
23 #:use-module (gnu packages ncurses)
24 #:use-module (gnu packages readline)
25 #:use-module (gnu packages dejagnu)
26 #:use-module (gnu packages texinfo)
27 #:use-module (gnu packages multiprecision)
28 #:use-module (gnu packages xml)
684a2f59 29 #:use-module (gnu packages guile)
1ffa7090 30 #:use-module (gnu packages python)
684a2f59 31 #:use-module (gnu packages pkg-config)
183c9a89 32 #:use-module ((guix licenses) #:select (gpl3+))
fbbb1c0f
LC
33 #:use-module (guix packages)
34 #:use-module (guix download)
35 #:use-module (guix build-system gnu))
36
37(define-public gdb
38 (package
39 (name "gdb")
caaa715d 40 (version "7.12")
fbbb1c0f
LC
41 (source (origin
42 (method url-fetch)
43 (uri (string-append "mirror://gnu/gdb/gdb-"
684a2f59 44 version ".tar.xz"))
fbbb1c0f
LC
45 (sha256
46 (base32
caaa715d 47 "152g2qa8337cxif3lkvabjcxfd9jphfb2mza8f1p2c4bjk2z6kw3"))))
fbbb1c0f
LC
48 (build-system gnu-build-system)
49 (arguments
2fecbdbd
LC
50 `(#:tests? #f ; FIXME "make check" fails on single-processor systems.
51
52 #:modules ((srfi srfi-1)
53 ,@%gnu-build-system-modules)
54
f19b9b96
LC
55 #:phases (modify-phases %standard-phases
56 (add-after
57 'configure 'post-configure
58 (lambda _
59 (for-each patch-makefile-SHELL
60 (find-files "." "Makefile\\.in"))))
61 (add-after
2fecbdbd
LC
62 'install 'remove-libs-already-in-binutils
63 (lambda* (#:key inputs outputs #:allow-other-keys)
64 ;; Like Binutils, GDB installs libbfd, libopcodes, etc.
f19b9b96
LC
65 ;; However, this leads to collisions when both are
66 ;; installed, and really is none of its business,
67 ;; conceptually. So remove them.
2fecbdbd
LC
68 (let* ((binutils (assoc-ref inputs "binutils"))
69 (out (assoc-ref outputs "out"))
70 (files1 (with-directory-excursion binutils
71 (append (find-files "lib")
72 (find-files "include"))))
73 (files2 (with-directory-excursion out
74 (append (find-files "lib")
75 (find-files "include"))))
76 (common (lset-intersection string=?
77 files1 files2)))
78 (with-directory-excursion out
79 (for-each delete-file common)
80 #t)))))))
fbbb1c0f 81 (inputs
183c9a89 82 `(("expat" ,expat)
fbbb1c0f
LC
83 ("mpfr" ,mpfr)
84 ("gmp" ,gmp)
85 ("readline" ,readline)
86 ("ncurses" ,ncurses)
684a2f59
MW
87 ("guile" ,guile-2.0)
88 ("python" ,python)
89 ("python-wrapper" ,python-wrapper)
03f45001
LC
90 ("dejagnu" ,dejagnu)
91
92 ;; Allow use of XML-formatted syscall information. This enables 'catch
93 ;; syscall' and similar commands.
94 ("libxml2" ,libxml2)))
c4c4cc05 95 (native-inputs
684a2f59
MW
96 `(("texinfo" ,texinfo)
97 ("pkg-config" ,pkg-config)))
caaa715d 98 (home-page "https://www.gnu.org/software/gdb/")
f50d2669 99 (synopsis "The GNU debugger")
fbbb1c0f 100 (description
a22dc0c4
LC
101 "GDB is the GNU debugger. With it, you can monitor what a program is
102doing while it runs or what it was doing just before a crash. It allows you
103to specify the runtime conditions, to define breakpoints, and to change how
104the program is running to try to fix bugs. It can be used to debug programs
105written in C, C++, Ada, Objective-C, Pascal and more.")
fbbb1c0f 106 (license gpl3+)))