GDB is the standard debugger for the GNU software system.
-1
votes
2answers
32 views
How do I debug this segmentation fault?
Rather than flood this page with 80 lines of C, I've uploaded it to pastebin.
http://pastebin.com/b6UDpw0J
The rest of the program works. I can use flags -x and -cx without any problem, but using -c
...
0
votes
0answers
19 views
Debugging map<int, unique_ptr<A>> in gdb
I use g++ 4.8 that supports c++ 11 feature on my mac.
/opt/local/bin/g++-mp-4.8
I also use gdb 6.3.50.
GNU gdb 6.3.50-20050815 (Apple version gdb-1822) (Sun Aug 5 03:00:42 UTC 2012)
Copyright ...
2
votes
2answers
32 views
gdb - get variable name of register
In GDB, info registers or info all-registers will show you all of the register symbol names and their values.
Question:
How do I get the variable name (i.e. from the source code) that is ...
1
vote
0answers
14 views
How can I inspect this slice of this array in gdb?
I am in a GDB debugging session and I have an array of length 20,000. Most of the elements are zero but there is a couple of them at around index 10000 which are of interest. Unfortunately, when I say ...
-1
votes
0answers
23 views
How to use Eclipse to debug mex files? [duplicate]
For all those Linux users (like me) who are not content using gdb's command line interface and would prefer to use a modern IDE for debugging, is it possible to get Eclipse to function as a debugging ...
-1
votes
1answer
59 views
what is the case when a programe can run as normal but not in gdb?
I have a programe, which is so simple. The code as below.
I compiled it with
gcc -g -Wall -I../software/libxml2-2.9.0/include/
-lxml2 -L/usr/lib test.c -o test
I can absolutely run it ...
1
vote
0answers
18 views
How to adjust the Summary Format to expose a float** as a float[][]?
I'm using XCode to debug some code. Specifically, the code that I'm debugging exposes a float[][] as float**. I am unable to change this syntax, but I'm not certain it would help anyway.
After ...
1
vote
1answer
28 views
gdb changing the value of sigint as caught by sigwait in a handler thread?
I have a multithreaded (pthreads) application where I have hooked SIGINT to allow me to interrupt the program. I set up a signal hander thread like so:
/*** startup code ***/
// Prep ...
0
votes
1answer
11 views
gdb python: Walking through array of structures
Can't we traverse the array of structs ? I mean for each index by checking the content of structs and print each field accordingly? As we can do for a struct like
s = gdb.parse_and_eval(expr)
for k ...
0
votes
0answers
38 views
Debugging Safari on OS X: strange crash
I'm currently debugging Safari/WebKit on OS X and need some help with the following case:
I created a crafted HTML document which leads Safari to crash. This is my stacktrace:
Starting program: ...
2
votes
2answers
67 views
Trashes in copied std::list
I have graph class that looks like:
class Graph {
public:
typedef unsigned int size_type;
typedef std::list<size_type> Neighbours;
protected:
size_type m_nodes_count, ...
1
vote
1answer
33 views
GDB can't debug the go program within cgo code
example files
src/test.go
package main
import (
. "clib"
)
func main() {
a := "123";
b := "456";
c := "789";
println(a,b,c);
Output("ABC");
}
src/clib/clib.h
#ifndef CLIB
void ...
0
votes
0answers
14 views
debugging with bochs + gdb on 64bits system: Program received signal SIGTRAP, Trace/breakpoint trap
everyone! I got a strange question when debugging with bochs + gdb on 64 bits system, while on 32 bits system it woks well.
I write some code like linux kernel 0.01 and use bochs to debug it. After ...
3
votes
1answer
42 views
GDB watching class member in vector of instances
Here is an extremely simplified version of my class:
Class MyClass {
public:
int sizeDesired;
};
I'm creating a vector of MyClass instances in main:
int main(int argc, char **argv) {
...
3
votes
1answer
54 views
Source line number in GDB backtrace corresponds to basically nothing
I compiled all source files using GCC with options -O0 -g3, and then I ran the corresponding binary in GDB. After receiving a SIGABRT, I performed a backtrace.
Here is the "crash" output from the ...
1
vote
1answer
31 views
Change the library in GDB
I am debugging using GDB in linux but while debugging it's loading symbol from some library.
How can I tell GDB to load symbols from my library instead?
0
votes
1answer
28 views
xemacs gdb cleanups.c:264: internal-error: restore_my_cleanups: Assertion '*pmy_chain == SENTINEL_CLEANUP' failed
I tried running GDB, version 7.6.50.20130508-cvs (cygwin-special), on Xemacs version 21.4.21 but I get the following error:
/netrel/src/gdb-7.6.50-2/gdb/cleanups.c:264: internal-error: ...
1
vote
1answer
22 views
How to debug with strace -i when everytime address is different
[b77d0424] open("etc/shadow",0_RDONLY) = -1 EACCESS (Permission denied)
every time i run [b77d0424] changed to another address
i can not use gdb b *0xb77d0424 and then c to find lib64/libc.so.6
it ...
0
votes
1answer
37 views
container_of macro in gdb python
i am trying to access kernel linked list, the structure is
struct my_struct {
struct my_hardware_context ahw;
struct net_device *netdev;
struct pci_dev *pdev;
struct list_head mac_list;
struct ...
0
votes
1answer
20 views
GDB test script
So I am relatively new to coding so please forgive improper vocab. What I am basically trying to do is create a script for, or perhaps enter commands into, GDB so that it can run my code with the ...
-1
votes
0answers
41 views
GDB can't debug after the golang program added mattn's go-sqlite3 library
After added go-sqlite3 library,
Can build the golang program, but cant debug,
Enter GDB, print value of every variable is wrong.
Who can help me solve this problem, thank u very much!~
1
vote
0answers
35 views
Extract execution log from gdb record
I am attempting to use gdb's record feature to generate a list of the instructions executed for the tutorial example
I can use gdb record to step forward and back successfully and save the execution ...
8
votes
4answers
127 views
how GDB knows it has to break at specified break point?
A basic question & I am very new to C/C++ and GDB.
We use GDB to debug a process. We attach GDB to a process and then specify filename.c along with line number to put break point.
My question is ...
0
votes
1answer
21 views
GDB 7.2 + python: how to get members of anonymous structure?
GDB 7.2 python doesn't have gdb.Type.iteritems method. Anyway I can access the members of the anonymous structure (which is within another structure of course) from gdb 7.2 ? The assumption is that I ...
1
vote
1answer
66 views
0
votes
1answer
56 views
(gdb) p/x equivalent in gdb python script?
the main structure is
struct my_struct
{
int x;
void* md_template;
void* md_capture_buff;
....
};
When i am doing
(gdb) p ((struct my_struct *)dev_base->next->priv)
The output ...
0
votes
0answers
40 views
Android NDK developer
this may a little issue, i use the Eclipse with Android plugin to develop a NDK project, on my project of the Eclipse workspace, there are some files under the libs/armeabi folder, includs gdb.setup ...
1
vote
2answers
39 views
How to get gdb tui assembly output to show instruction?
I wanted to see the assembly output but found that in TUI, it would output function signature + offset: which is cool, except for the fact that I'm programming in C++ and the function signature is ...
0
votes
0answers
21 views
gdb crashes!! — QtLibrary4.8.4, QtCreator2.7.1 and MinGW 4.4,
I am using QtLibrary4.8.4(64 bit), QtCreator2.7.1(64 bit) and MinGW32 4.4.0 for Qt project development.
I can successfully run program but cannot debug it, on debugging the gdb crashes!!!
what can be ...
0
votes
0answers
19 views
Building gdb using llvm/clang
I'm trying to build gdb from source. I'm using "gdb 7.6 tag"
commit 71d22eb90be4df4b7d2dccd30caae9048289e94c
Author: Joel Brobecker <brobecker@gnat.com>
Date: Fri Apr 26 11:43:30 2013 +0000
...
0
votes
1answer
37 views
How to set a watch point for an instance variable?
My class is defined in a header file, and I need to watch for its private non-static member in GDB, like this:
class foo {
int bar;
};
0
votes
1answer
38 views
Understanding GDB and Segfault Messages
I was recently debugging an application that was segfaulting on a regular basis--I solved the problem, which was relatively mundane (reading from a null pointer), but I have a few residual questions ...
0
votes
1answer
68 views
gdb step not working as expected
I am debugging static multi-threaded x86-64 C++ application on Linux.
I can set breakpoints on functions and stop on them and I can walk step by step over function body. But when I try to step into ...
0
votes
2answers
48 views
Why are some debug symbols missing and how to track them?
I am currently debugging a Kernel module and to this purpose, I built the whole kernel with debug information (produces kallsyms, etc ...).
When I try nm my_module.ko, I get the list of symbols ...
0
votes
0answers
13 views
analyzing USB related registers in ARM
I want to analyze USB related registers of my ARM-11 processor in Linux to see how my USB driver has configured the registers.
Can you please tell me how I can analyze the registers? if GDB is needed ...
1
vote
1answer
35 views
Ios Debugging with GDB and No Symbols - Examine Objects
I am debugging an ios application that i don't have the source code for and it's a stripped binary, so there are no symbols that i can use. I therefore use addresses to set bps with the help of IDA ...
0
votes
1answer
35 views
How to list all variables in the current context in gdb?
In gdb, after reaching a breakpoint, I want to list all the variables in the current context, instead of giving each variable name explicitly? Is there any way to achieve this at all?
0
votes
0answers
24 views
How to debug a C program where an intermediate stack frame seems to be getting lost
I am writing a program on netbsd 6 in C. The program aborts in function say foo1 when it finds inconsistency in parameters. foo1 is a frequently called function. The same code in foo1 gets executed ...
-1
votes
0answers
27 views
How can I download otool? [closed]
I cannot seem to find out how to get otool for mac. Can anybody give me a link?
Also, where can I download GDB (also for mac)?
I need to debug a mac program. A guide to debugging mac programs would ...
0
votes
3answers
49 views
Attaching GDB to Eclipse to debug JNI C++ code
I'm having problems debugging a JNI application. I've read several threads in StackOverflow, like this one, this one or this one. I've also tried to start gdb in a separated shell and attach it to the ...
0
votes
1answer
118 views
Qt Creator 2.7.1 and Qt 4.8.4 Cannot Remotely Debug Library
Using Qt Creator 2.7.1 and Qt 4.8.4, I made a Qt library and a simple Qt app that dynamically links against this library. I am attempting to remotely deploy and debug my App and step into my library ...
0
votes
1answer
14 views
Turning off warning messages in GDB
I am writing a script that runs GDB and a series of GDB commands.
One of my commands file myfile.elf generates warning messages;
warning: Loadable segment ".func_addrs" outside of ELF segments
...
0
votes
0answers
42 views
gdb fails when using with mingw
I'm trying to use gdb from the command line within MinGW but it keeps crashing. Whenever I type gdb.exe or gdb or even gdb exampleprogram.exe, it crashes and I get a windows popup stating "The ...
0
votes
0answers
19 views
Why stbgcc gdb can't import the os module?
I'm using the toolchain of stbgcc-4.5.3-1.3 and its gdb stbgcc-4.5.3-1.3/bin/mipsel-linux-gdb. I don't know why it can't import the os module. The error messages are following.
Could not find ...
0
votes
1answer
37 views
How do I calculate the address of the stored EIP
As the title says, I am trying to obtain the address of the stored EIP in the frame.
For this simple program:
func1(int a, int b)
{
int x = 1;
}
int main(void)
{
func1(1,2);
}
My ...
1
vote
3answers
71 views
How do you extract data from gdb
How do you extract data from gdb so you can examine it in another program?
I am using gdb to debug a program. To see what is in array udata, I have created a source file called printudata with the ...
0
votes
1answer
52 views
Using gdb to compare assembly traces
I have a shared object file that I don't have the source for. I am interested in what happens when entering a specific function. When entering this function in a certain situation (when there is a ...
0
votes
1answer
63 views
gdb python : How to iterate through a kernel linked list inside a structure
using gdb-python script, i am trying to print data structure which includes kernel data structures and lists(e.g. struct list_head),
the structure is
struct my_struct {
struct my_hardware_context ...
1
vote
2answers
60 views
Why “No symbol file now” when I debug by gdb?
the Makefile is:
objects = disk.o super.o inode.o namei.o open.o main.o
test : $(objects)
cc -g -Wall -O2 -o test $(objects)
disk.o : fs.h disk.h
cc -g -Wall -O2 -c disk.c
namei.o ...
1
vote
1answer
28 views
Is there a way to tell which to tell what the hostname where a binary was compiled is using gdb? [closed]
Upon loading a binary in gdb I can use info sources to see paths for source files. They are absolute paths though but not sure which server the binary was built on. Is this information available at ...


