[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/06: gnu: gdb@8.2: Inherit from the 'full' gdb.
From: |
guix-commits |
Subject: |
05/06: gnu: gdb@8.2: Inherit from the 'full' gdb. |
Date: |
Thu, 2 Jul 2020 17:31:13 -0400 (EDT) |
mbakke pushed a commit to branch staging
in repository guix.
commit 5e6d583954b8ca9c4ab2eed3347a92a3ad7ad6fb
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Thu Jul 2 23:26:46 2020 +0200
gnu: gdb@8.2: Inherit from the 'full' gdb.
This reverts commit c007d868686fc2f9bf02a34150d4f0ac72b1f8d2, because later
versions of Rust requires loading Python plugins.
* gnu/packages/gdb.scm (gdb-minimal-8.2): Rename to ...
(gdb-8.2): ... this. Adjust inheritance accordingly.
* gnu/packages/rust.scm (rust-1.27)[native-inputs]: Adjust accordingly.
---
gnu/packages/gdb.scm | 4 ++--
gnu/packages/rust.scm | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/gdb.scm b/gnu/packages/gdb.scm
index f2f272c..b836228 100644
--- a/gnu/packages/gdb.scm
+++ b/gnu/packages/gdb.scm
@@ -131,9 +131,9 @@ written in C, C++, Ada, Objective-C, Pascal and more.")
;; This version of GDB is required by some of the Rust compilers, see
;; <https://bugs.gnu.org/37810>.
-(define-public gdb-minimal-8.2
+(define-public gdb-8.2
(package
- (inherit gdb-minimal)
+ (inherit gdb)
(version "8.2.1")
(source (origin
(method url-fetch)
diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm
index fe43e72..b084a6d 100644
--- a/gnu/packages/rust.scm
+++ b/gnu/packages/rust.scm
@@ -828,7 +828,7 @@ jemalloc = \"" jemalloc "/lib/libjemalloc_pic.a" "\"
(native-inputs
;; FIXME: Rust 1.27 and some later versions require GDB 8.2
specifically.
;; See <https://bugs.gnu.org/37810>.
- (alist-replace "gdb" (list gdb-minimal-8.2)
+ (alist-replace "gdb" (list gdb-8.2)
(package-native-inputs base-rust)))
(arguments
(substitute-keyword-arguments (package-arguments base-rust)
- branch staging updated (2995be7 -> 6ba3980), guix-commits, 2020/07/02
- 01/06: gnu: python-cython: Update to 0.29.20., guix-commits, 2020/07/02
- 02/06: gnu: libyaml: Update to 0.2.5., guix-commits, 2020/07/02
- 03/06: gnu: libyaml: Do not build static libraries., guix-commits, 2020/07/02
- 04/06: gnu: libcyaml: Update to 1.1.0., guix-commits, 2020/07/02
- 05/06: gnu: gdb@8.2: Inherit from the 'full' gdb.,
guix-commits <=
- 06/06: gnu: Rust: Use gdb@8., guix-commits, 2020/07/02