GDB is the standard debugger for the GNU software system.
63
votes
25answers
20k views
C++ gdb GUI
Briefly: Does anyone know of a GUI for gdb that brings it on par or close to the feature set you get in the more recent version of Visual C++?
In detail: As someone who has spent a lot of time ...
57
votes
4answers
14k views
How do I print the elements of a C++ vector in GDB?
I want to examine the contents of a std::vector in GDB, how do I do it? Let's say it's a std::vector<int> for the sake of simplicity.
44
votes
5answers
22k views
Can I set a breakpoint on 'memory access' in GDB?
I am running an application through gdb and I want to set a breakpoint for any time a specific variable is accessed / changed. Is there a good method for doing this? I would also be interested in ...
42
votes
4answers
17k views
How do I print the full value of a long string in gdb?
I want to print the full length of a C-string in GDB. By default it's being abbreviated, how do I force GDB to print the whole string?
39
votes
12answers
4k views
Most tricky/useful commands for gdb debugger
Can you post your most tricky and useful commands while you run a debugger like gdb or dbx.
27
votes
9answers
6k views
Getting gdb to save a list of breakpoints?
OK, info break lists the breakpoints, but not in a format that would work well with reusing them using the --command as in this question. Does gdb have a method for dumping them into a file ...
25
votes
24answers
11k views
What tools do you use to develop C++ applications on Linux?
I develop C++ applications in a Linux environment. The tools I use every day include Eclipse with the CDT plugin, gdb and valgrind.
What tools do other people use? Is there anything out there for ...
24
votes
3answers
8k views
Debugging Best Practices for C++ STL/Boost with gdb
Debugging with gdb, any c++ code that uses STL/boost is still a nightmare. Anyone who has used gdb with STL knows this. For example, see sample runs of some debugging sessions in code here.
I am ...
22
votes
2answers
287 views
How can I attach a debugger to a running Perl process?
I have a running Perl process that’s stuck, I’d like to poke inside with a debugger to see what’s wrong. I can’t restart the process. Can I attach the debugger to the running process? I know I can do ...
20
votes
4answers
10k views
Inspecting standard container (std::map) contents with gdb
Supposing to have something like this:
#include <map>
int main(){
std::map<int,int> m;
m[1] = 2;
m[2] = 4;
return 0;
}
I would like to be able to inspect the contents of ...
19
votes
8answers
4k views
What is a good unix alternative to DDD (Data Display Debugger)?
I am developing c on linux using vim and debugging using ddd. However I find that ddd performs very poorly at scrolling on this machine so its sometimes very frustrating to use.
I like the way that ...
19
votes
6answers
4k views
Prettify my gdb
Is there a way to highlight and color gdb output during interactive debugging?
Please don't reply I should use ddd, nemiver, emacs, vim, or any other front-end, I just prefer gdb as it is, but would ...
18
votes
4answers
849 views
Debugging of a C program (Redis server)
Premise
Hi,
I received multiple reports from a Redis user that experienced server crashes, using a Redis stable release (latest, 2.4.6). The bug is strange since the user is not doing esoteric ...
18
votes
6answers
2k views
Do you debug C++ code in VIM? How?
The question is to all you people, who use VIM to develop C++ apps.
There was a period in my life, which can be described as
'I hate VIM!!!'..'VIM is nice!'
However, having grown up mostly on MS Dev ...
18
votes
11answers
1k views
The Community-Driven GDB Primer
I was reading this question and realized it might be helpful for entry- and pro-level developers alike (including myself) to have a common reference for best practices in using gdb.
Many questions ...
18
votes
3answers
6k views
Inspect the return value of a function in gdb
Is it possible to inspect the return value of a function in gdb assuming the return value is not assigned to a variable?
18
votes
3answers
11k views
gdb: how to set breakpoints on future shared libraries with a --command flag
I'm trying to automate a gdb session using the --command flag. I'm trying to set a breakpoint on a function in a shared library (the Unix equivalent of a DLL) . My cmds.gdb looks like this:
set args ...
17
votes
1answer
807 views
Integration of android ndk's ndk-gdb with emacs?
Can anyone tell me how to run ndk-gdb from within emacs using gdb-mode? I'm currently running it in a shell buffer. What I'd love to have is a way to automatically sync a source file buffer with the ...
17
votes
4answers
2k views
Set breakpoint in C or C++ code programmatically for gdb on Linux
How can I set a breakpoint in C or C++ code programatically that will work for gdb on Linux?
I.e.:
int main(int argc, char** argv)
{
/* set breakpoint here! */
int a = 3;
a++; /* In ...
17
votes
10answers
1k views
Can gdb make a function pointer point to another location?
I'll explain:
Let's say I'm interested in replacing the rand() function used by a certain application.
So I attach gdb to this process and make it load my custom shared library (which has a ...
17
votes
4answers
22k views
How to dump data stored in objective-c object (NSArray or NSDictionary)
Forgive me for a potentially silly question here, but in other programming languages (scripting ones like PHP or Perl) it is often easy to dump everything contained within a variable.
For instance, ...
16
votes
6answers
278 views
How can you reach the same level of efficiency using gdb as you do with a visual debugger?
I know this is like heresy, but I simply can't see how using gdb can be more efficient, in daily debug use (not advanced dumping and logging debug), than a visual debugger.
I come from a background ...
16
votes
4answers
2k views
How it's better to invoke gdb from program to print it's stacktrace?
Now I'm using function like this:
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <unistd.h>
void print_trace() {
char pid_buf[30];
...
16
votes
4answers
5k views
What is the difference between gcc -ggdb and gcc -g
When I use gcc under Linux to compile some c programs,
I usually use -g to get some debug information into the elf file
so that gdb can help me when that is needed.
However I noticed that some use ...
15
votes
3answers
6k views
GDB cheat sheet
Can anyone recommend a good cheat sheet for gbd? I'm experienced with windbg commands, I'm looking for gdb equivalents for lml (list loaded modules), ~*k (all threads stack), ba (break on access), dt ...
15
votes
5answers
7k views
How to load program reading stdin and taking parameters in gdb?
I have a program that takes input from
stdin and also takes some parameters
from command line. It looks like this:
cat input.txt > myprogram -path
"/home/user/work"
I try to debug ...
14
votes
3answers
218 views
How can I get the lua stack trace from a core file using gdb
I have a C++ application (for OS X) that calls lua as a scripting language.
I'm running a large number of these applications (100s) and they can run
for a very long time (days or weeks).
Sometimes ...
14
votes
1answer
238 views
CoreAnimation's threads
Recently, I've been trying to find a way to analyze animations via GDB (for no other good reason than curiosity.) As I understand it, CoreAnimation runs it's animations in a separate thread(s). ...
14
votes
3answers
590 views
How can I tell if a library was compiled with -g?
I have some compiled libraries on x86 Linux and I want to quickly determine whether they were compiled with debugging symbols.
14
votes
2answers
2k views
Multiple commands in gdb separted by some sort of delimiter ';'?
I am trying to execute two commands at once in gdb:
finish; next
I tried using the ';' to separate the commands but gdb did not let me do both at once.
Is it possible to do multiple commands in ...
14
votes
10answers
3k views
Is there a way to change another process's environment variables?
On Unix, is there any way that one process can change another's environment variables (assuming they're all being run by the same user)? A general solution would be best, but if not, what about the ...
14
votes
12answers
3k views
Is there an alternative to gdb for Linux systems?
Please consider both commercial and free debuggers. Would like to see also the pros and cons for each.
13
votes
2answers
168 views
How to “watch” the size of a C++ std::vector in gdb?
I have a std::vector as part of a class, that contains a custom type. It's contents seems to be mysteriously changed from somewhere in the program. I am having trouble trying to figure out where this ...
13
votes
3answers
2k views
How to avoid entering library's source files while debugging in Qt Creator with gdb?
How can I configure Qt Creator and/or gdb so that while debugging my program using Qt libraries the debugger would avoid stepping into Qt's source files?
13
votes
2answers
3k views
What useful GDB scripts have you used/written?
People use gdb on and off for debugging,
of course there are lots of other debugging tools
across the varied OSes, with and without GUI and,
maybe other fancy IDE features.
I would like to know ...
13
votes
4answers
17k views
Adding gdb to MinGW
I've gone to http://sourceforge.net/project/showfiles.php?group_id=2435, downloaded the Automated MinGW Installer for MinGW 5.1.4 and at the same time the GNU Source-Level Debugger Release Candidate: ...
12
votes
1answer
497 views
Setting an std::string variable value from gdb?
Is it possible... when the debugger is stopped at a breakpoint, to modify the value of a std::string variable without resorting to hacks like tweaking the memory image of the current buffer?
e.g. ...
12
votes
6answers
13k views
How can I force GDB to disassemble?
I'm trying to disassemble a program to see a syscall assembly instruction (the INT instruction, I believe) and the handler with GDB and have written a little program (see below) for it that opens and ...
12
votes
6answers
15k views
Invoke gdb to automatically pass arguments to the program being debugged
I'd like to write a script that (under certain conditions) will execute gdb and automatically run some program X with some set of arguments Y. Once the program has finished executing the user should ...
12
votes
5answers
2k views
Which are your favorite GDB tricks? [closed]
Which is your favorite macro/trick in gdb? Have you written any good macros for improving language integration? What's your best way of making the debugging experience inside gdb less painful?
12
votes
7answers
3k views
How Does The Debugging Option -g Change the Binary Executable?
When writing C/C++ code, in order to debug the binary executable the debug option must be enabled on the compiler/linker. In the case of GCC, the option is -g. When the debug option is enabled, how ...
11
votes
3answers
985 views
can't debug small program on eclipse helios cdt using mingw/gdb under windows, console freezes
I've been trying to use Eclipse CDT to do some c++ examples, i can run them just fine with the run command, but whenever i try to Debug, the console window freezes up, I'm able to input, but the ...
11
votes
2answers
807 views
Use gdb console in eclipse
Is there a way how I can access gdb's console in eclipse? I would like to just be able to set breakpoints with the mouse and then use the console for debugging.
11
votes
2answers
691 views
What is the cause for “panic: free from wrong pool during global destruction.” in Term::ReadLine::Gnu?
in https://rt.cpan.org/Ticket/Display.html?id=37194#txn-641389 I reopened a bug concerning a Perl crash in conjunction with the libreadline XS bindings. I attached the necessary debug information, but ...
11
votes
6answers
4k views
GDB breakpoints
I have a list of breakpoints which I want to add each time I debug a particular program.
Is there a way I can put all these breakpoint information in a file and use it at the starting of each debug ...
10
votes
2answers
914 views
Passing arguments to program run through gdb
I usually run a program as :-
$ ./a.out < t
I would like to debug it using gdb. Also I would like to accept arguments by redirecting input from the file t. I am aware of the set-args ...
10
votes
2answers
581 views
Edit and Continue on GDB
I know that E&C is a controversial subject and some say that it encourages a wrong approach to debugging, but still - I think we can agree that there are numerous cases when it is clearly useful - ...
10
votes
2answers
2k views
Running 32 bit assembly code on a 64 bit Linux & 64 bit Processor : Explain the anomaly
I'm in an interesting problem.I forgot I'm using 64bit machine & OS and wrote a 32 bit assembly code. I don't know how to write 64 bit code.
This is the x86 32-bit assembly code for Gnu Assembler ...
10
votes
10answers
2k views
How do you use gdb?
I decided to find out how our C/C+ *nix practitioners use the gdb debugger.
Here is what I typically use:
b - break filename.c:line #, function, filename.cpp:function, className::Member
n, c, s -- ...
10
votes
7answers
2k views
Linux C++ Debugger
I'm looking for the perfect Linux C++ debugger. I don't expect success, but the search should be informative.
I am a quite capable gdb user but STL and Boost easily crush my debugging skills. It ...