me
/
guix
Archived
1
0
Fork 0

gnu: gdb: Distinguish between the "pinned" and the "default" version.

* gnu/packages/gdb.scm (gdb/pinned): New variable.
* gnu/packages/rust.scm (rust)[native-inputs]: Use it instead of GDB.
master
Ludovic Courtès 2023-04-18 16:08:31 +02:00
parent c8bc58a9e7
commit 6b5c21e043
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
2 changed files with 6 additions and 2 deletions

View File

@ -161,11 +161,15 @@ written in C, C++, Ada, Objective-C, Pascal and more.")
;; GDB 12 builds fine on GNU/Hurd.
(supported-systems %supported-systems)))
(define-public gdb
(define-public gdb/pinned
;; This is the fixed version that packages depend on. Update it rarely
;; enough to avoid massive rebuilds.
gdb-11)
(define-public gdb
;; The "default" version.
gdb-11)
(define-public gdb-minimal
(package/inherit gdb-12
(name "gdb-minimal")

View File

@ -788,7 +788,7 @@ safety and thread safety guarantees.")
(format #f "prefix = ~s" (assoc-ref outputs "rustfmt"))))
(invoke "./x.py" "install" "rustfmt")))))))
;; Add test inputs.
(native-inputs (cons* `("gdb" ,gdb)
(native-inputs (cons* `("gdb" ,gdb/pinned)
`("procps" ,procps)
(package-native-inputs base-rust))))))