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