0
votes
4answers
88 views
How do I show what fields a struct has in gdb?
I came upon a struct called ngx_http_variable_value_t in my gdb session and I would like to print what fields it has in the console. Is that possible?
0
votes
2answers
17 views
Load a new exe with gdb
I am currently trying to make use of gdb to disassemble an exe, and from my home, I start the application like such:
gdb "c:\file.exe"
And gdb starts and loads that file automat …
1
vote
1answer
42 views
Is there a gdb (or similar) frontend that will show the program stack visually?
Basically, I'm looking for something where I can break execution and then see a visual representation of the stack in memory. DDD doesn't have this as far as I can tell.
4
votes
3answers
87 views
Continue to debug after failed assertion on Linux? [C/C++]
When an assertion fails with Visual C++ on Windows, the debugger stops, displays the message, and then lets you continue (or, if no debugging session is running, offers to launch v …
0
votes
2answers
59 views
How to use GDB to debug a big project?
Now I have a c language project which include three directories /bin, /inc and /src.
All of header files (.h) are included in /inc and all of source(.c) files are stored in /src, i …
0
votes
1answer
34 views
How to debug programms written in fasm under linux using gdb?
I wrote simple "hello, world" in fasm, and its works, but how i can generate debug info for gdb and edb (Evan's Debugger)? Fasm compiler could only produce debugging symbols in its …
0
votes
0answers
13 views
vertical split for cgdb ?
Hi,
I'd like to know if it is possible to vertically split screens in cgdb ?
Regards,
1
vote
2answers
74 views
How can I display Unicode strings while debugging on linux?
I have been working for some years now as C++ Developer using MS Visual Studio
as working platform. Since I privately prefer to use linux, I recently took the
chance to move my wor …
0
votes
1answer
18 views
Still the problem of debug project with GDB tool
Here is more specific explanation of what I want to make clear:
I have some source c files locate
under JM/lencod/src ;
and some header h files locate under
JM/lencod/inc ;
and a …
0
votes
2answers
36 views
How extract text from gdb?
Sometimes,I would need to get the gdb output.In the shell,I could use script command to extract text.Whats the equivalent in gdb?
ps: I tried shell script,but after hitted return, …
3
votes
2answers
104 views
DDD Alternative that also Draws Pretty Pictures of Data Structures
Is there anything other than DDD that will draw diagrams of my data structures like DDD does that runs on Linux?
ddd is okay and runs, just kind of has an old klunky feeling to it …
0
votes
2answers
31 views
Xcode “warning: Could not find object file … no debug information available for …”
Messing about with various settings for unit-testing plug-ins left me with a discombobulated project file. I seem to have fixed it, but there is one side effect: everytime I run th …
5
votes
3answers
97 views
Multi-threaded debugging tutorial for GDB and C
Does anybody know of a good GDB (or other Linux debugger) tutorial for debugging multi-threaded C code? I'm looking for one that includes simple examples.
0
votes
2answers
23 views
Debugging with Code Blocks and a custom make (Boost.Build)
I've been using Code::Blocks with MinGW on a WinXP box for a while now. But since I started using Boost.Build as "custom build tool" I'm having trouble setting break points from Co …
0
votes
1answer
12 views
Which version of m4 does the author of Debugging with GDB use?
I am trying to learn how to debug programs with gdb following Debugging with GDB.The first chapter of this book present a sample seesion to debug programs.My question is where coul …
