Hi Guix, with the attached patch GDB is built with Guile scripting support[1].
[1]: https://sourceware.org/gdb/current/onlinedocs/gdb/Guile.html
>From e8f89cd5707781e941940a29494129c849eb205c Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus <[email protected]> Date: Mon, 28 Sep 2015 14:54:58 +0200 Subject: [PATCH] gnu: gdb: Enable Guile scripting support. * gnu/packages/gdb.scm (gdb)[arguments]: Enable Guile scripting support. --- gnu/packages/gdb.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/gdb.scm b/gnu/packages/gdb.scm index f17b398..09b4d4b 100644 --- a/gnu/packages/gdb.scm +++ b/gnu/packages/gdb.scm @@ -48,6 +48,8 @@ (arguments `(#:tests? #f ; FIXME "make check" fails on single-processor systems. + #:configure-flags '("--with-guile") + #:modules ((srfi srfi-1) ,@%gnu-build-system-modules) -- 2.1.0
