diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-04-18 15:59:34 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-04-18 15:59:34 +0200 |
commit | c8bc58a9e705bb4c37d2c4386d1c6050ab324cb1 (patch) | |
tree | 505590ef720a82fdfc79e0c77624be74c21a368d /gnu/ci.scm | |
parent | 664a222cac862665267f9bc69f1db1ec1a2238d5 (diff) | |
download | guix-c8bc58a9e705bb4c37d2c4386d1c6050ab324cb1.tar.gz |
ci: Add 'gdb-minimal' to the "core" package set.
* gnu/ci.scm (%core-packages): Add GDB-MINIMAL.
Diffstat (limited to 'gnu/ci.scm')
-rw-r--r-- | gnu/ci.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/ci.scm b/gnu/ci.scm index 5591bb711b..7acd88ed29 100644 --- a/gnu/ci.scm +++ b/gnu/ci.scm @@ -46,6 +46,7 @@ #:use-module (gnu image) #:use-module (gnu packages) #:use-module (gnu packages gcc) + #:use-module (gnu packages gdb) #:use-module (gnu packages base) #:use-module (gnu packages gawk) #:use-module (gnu packages guile) @@ -137,7 +138,7 @@ SYSTEM." ;; Note: Don't put the '-final' package variants because (1) that's ;; implicit, and (2) they cannot be cross-built (due to the explicit input ;; chain.) - (list gcc-10 gcc-11 gcc-12 glibc binutils + (list gcc-10 gcc-11 gcc-12 glibc binutils gdb-minimal gmp mpfr mpc coreutils findutils diffutils patch sed grep gawk gnu-gettext hello guile-2.2 guile-3.0 zlib gzip xz guix %bootstrap-binaries-tarball |