Tagged Questions
The gud tag has no wiki summary.
8
votes
3answers
279 views
Making filenames/line numbers linkable in Emacs gud buffer
I'm running pdb on my testcases in Python through the gud buffer. When I get a stacktrace/failure in my testcase, it looks like this:
FAIL: test_foo_function (__main__.TestFoo)
...
7
votes
1answer
125 views
how do i hook commands sent to pdb through gud?
i've started using pdb through gud in emacs 23.3, how can i hook command messages sent to the debugger from the buffer? i wrote the advice below for use with gdb, in order to persist comint's ring, ...
5
votes
1answer
116 views
emacs gud window use
How do I customize which window GUD will use when i issue commands - 'up', 'down', etc ? It seems to use an arbitrary window, sometimes even the window with gdb in it - I want to be able to specify a ...
4
votes
2answers
1k views
Using gdb in Emacs 23
I am trying to move from Emacs v22.3.1 to v23.1.1 and all was going well until I tried to run gdb using gud inside Emacs.
When I do meta-x gdb and give a command of 'gdb /my/executable/here' the ...
3
votes
0answers
84 views
Emacs GDB ReRun Behaviour
I would like the command gdb on program X to instead switch to an existing debugging session of X if it already exists instead of signalling an error "This program is already being debugged" in ...
1
vote
1answer
24 views
Can use local source files in a different directory while I use gdb over ssh in emacs?
I have a 32-bit desktop, where my copy of emacs is running.
I'd like to be able to debug a program running on a very stripped down qemu 64 bit virtual machine.
The virtual machine has an ssh port ...
1
vote
1answer
46 views
How do you run multiple instance of gud in emacs
I want to debug C++ and and php in the same emacs instance (using gdb and a php debugging mode that uses gud-common-init). When I fire both up everything just gets messed up. My guess is that gud.el ...
1
vote
2answers
152 views
Using emacs in putty, how to expand watched structure variable to show struct members in gud_watch window?
In GDB Graphical Interface For emacs
says:
To expand or contract a complex data type, click Mouse-2 or press on the tag to the left of the expression.
but when i press space, the watch window do ...
1
vote
1answer
162 views
display ASCII control characters in Emacs GUD (gdb) mode
Programs I debug output a lot of debug using ascii ctrl characters for colors, bold etc.
In GUD mode they appear as "^[[...m".
Is there a way to have that output like it would be in a console?
1
vote
2answers
369 views
Emacs gud raising prefix key error
I'm trying to debug code in Emacs but when I try either M-x gdb or M-x pdb, I get this error:
global-set-key: Key sequence C-x C-a C-l starts with non-prefix key C-x C-a
This is most likely coming ...
0
votes
1answer
39 views
What is a good debugger for native (C/C++) applications on the Mac?
I'm a native developer switching to the Mac from Windows. I have a lot of experience debugging using Windbg (CDB-GUD on Emacs) and Visual Studio and was wondering which debugger on the Mac would give ...
0
votes
1answer
35 views
Emacs/gud-gdb: show assert location on failure
When an assertion in my code fails, I get a backtrace like this from gdb:
(gdb) bt
#0 0x00007ffff455b3a5 in __GI_raise (sig=6)
at ../nptl/sysdeps/unix/sysv/linux/raise.c:64
#1 ...