ss' href='/cgit-static/cgit.css'/>
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/gdb.scm
AgeCommit message (Expand)Author
2024-12-11gnu: gdb: Fix build of target-specific versions....Since recently there has been a change to gdb package that introduced configure-flags, three gdb packages broke, since they assumed there are no configure-flags in gdb. That means they produced the same gdb as gdb-14. This patche fixes that by ensuring configure-flags are appended to original package. * gnu/packages/embedded.scm (make-gdb-arm-none-eabi)[arguments]: Append configure-flags to original flags. * gnu/packages/gdb.scm (gdb-multiarch)[arguments]: Likewise. * gnu/packages/gdb.scm (avr-gdb)[arguments]: Likewise. Signed-off-by: Janneke Nieuwenhuizen <janneke@gnu.org> Change-Id: Ia8748b86dc72197bd4eef307d091b6af44fc5611 Rutherther via Guix-patches via
2024-12-03gnu: Add gdb-15.2, with support for the 64bit Hurd....* gnu/packages/patches/gdb-hurd64.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it. * gnu/packages/gdb.scm (gdb-15): Use it in new variable. (gdb-minmal-15): New variable. (gdb/pinned): When building for the 64bit Hurd, set #:configure-flags to "--enable-targets=i586-pc-gnu,x86_64-pc-gnu". Change-Id: I52d28092be6c415b8668bb5a77d41c87df841351 Janneke Nieuwenhuizen
2024-11-15gnu: gdb: Use G-expressions....* gnu/packages/gdb.scm (gdb/pinned): Use G-expressions. (gdb-minimal gdb-multiarch, avr-gdb): ): Update acordingly. Change-Id: Ifcdc6a337ec9c4d5c4303082d207b657cbc34765 Janneke Nieuwenhuizen
2024-08-31gnu: gdb: Import the correct set of modules....* gnu/packages/gdb.scm (gdb) [arguments] <modules>: Replace %default-gnu-imported-modules with %default-gnu-modules. Change-Id: I0bf897af81c09ab7d00c1d06fb527633ed4c9bd8 Maxim Cournoyer
2024-08-31build-systems: gnu: Export %default-gnu-imported-modules and %default-gnu-mod......Until now users would have to cargo cult or inspect the private %default-modules variable of (guix build-systems gnu) to discover which modules to include when extending the used modules via the #:modules argument. The renaming was automated via the command: $ git grep -l %gnu-build-system-modules | xargs sed 's/%gnu-build-system-modules/%default-gnu-imported-modules/' -i * guix/build-system/gnu.scm (%gnu-build-system-modules): Rename to... (%default-gnu-imported-modules): ... this. (%default-modules): Rename to... (%default-gnu-modules): ... this. Export. (dist-package, gnu-build, gnu-cross-build): Adjust accordingly. Change-Id: Idef307fff13cb76f3182d782b26e1cd3a5c757ee Maxim Cournoyer
2024-04-11gnu: gdb: Update to 14.2....* gnu/packages/gdb.scm (gdb-14): Update to 14.2. Change-Id: Iddf941655fe5550f6cd01978fd7998f193957ee1 Ludovic Courtès
2024-02-27gnu: gdb: Update to 14.1....* gnu/packages/gdb.scm (gdb-12): Rename to ... (gdb-14): ... and update to 14.1. (avr-gdb, gdb-minimal, gdb-multiarch): Inherit from GDB-14. Change-Id: I1396ba885fc97a8b0387a4b8e4c04ff018eba23f Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan