GDB is the standard debugger for the GNU software system.

learn more… | top users | synonyms

0
votes
1answer
11 views

GDB Debugging protections

I am trying to reverse engineer a cydia app (binary) and using GDB with IDA Pro. There seems to be some debugging protection because main() is not in the bt stack, and I cannot access any of the ...
0
votes
1answer
25 views

gdb do not show the right source code by the instruction -l

I have met a freaky problem during my internship. My work is to code with VTK in C++ and I worked on OSX 10.8.3. When I want to debug my program, I ran the gdb and use instruction "file" to load ...
1
vote
0answers
31 views

Analysing multithreaded core files on linux with gdb

I am currently investigating an issue with a multithreaded program on linux. I can use gdb to look what each thread does and why the thing crashed. Nevertheless I do miss a way to simply print an ...
0
votes
1answer
22 views

gdb stepping into nested member functions a.getClassB().getClassC().SomeMethodInClassC();

Class A; //Singleton Class B; // Singleton Class C; //Singleton 1.A a; 2.a.getClassB().getClassC().SomeMethodInClassC(); 3.//Some other code This steps into getClassB() function , then if I give ...
0
votes
2answers
23 views

How gdb find value of all the registers from all the frames in stack

While debugging using on hitting break point, stack frames can seen by running bt. On selecting a frame by running info registers, values of registers on a particular frame can be seen. For ...
0
votes
0answers
13 views

Loading .gdbinit from current directory

I'm having trouble loading a .gdbinit file located in the current directory. On starting gdb, I get this: GNU gdb (GDB) 7.5-ubuntu Copyright (C) 2012 Free Software Foundation, Inc. License GPLv3+: ...
2
votes
2answers
33 views

What does 'inferior' mean in the term 'inferior debugger'?

I didn't really understand the explanation for inferior in the GDB manual, and google doesn't yield anything more helpful. Can anyone explain 'inferior' in simple terms?
0
votes
0answers
18 views

Warning thread 0x7f5xxx terminated without calling +exit

I'm using the linux version of GCD (libdispatch) to handle multithreading in an application. Recently the following message displayed during runtime: Warning thread 0x7f56f40008c8 terminated without ...
0
votes
0answers
50 views

Core dump : Extract all the global variables , data structures and sub-structures from a core dump

how to extract all the global variables , data structures and sub-structures (with address, type and values) from core dump,using gdb-python, generated after crashing of a C code.?
-1
votes
0answers
12 views

gdb7.6 cannot sniff corefile bfd on ia64-hpux [closed]

Environment: HP-UX hp12161 B.11.31 U ia64 0546304299 Compiler:gcc4.7.2 Configure=./configure --enable-64-bit-bfd When I analyse the corefile,gdb print the following error: ...
0
votes
0answers
40 views

Debugging : How to extract all global symbols (with name and values) from a core dump file .?

I am trying to extract all the global symbols (with name and corresponding values) of a C code from core file (core.pid file, generated when the code crashes). This is one way to do, but it extracts ...
0
votes
1answer
26 views

Python code in GDB init file .gdbinit

I'm trying to create a ~/.gdbinit that contains some Qt pretty printers for various Qt objects, especially QStrings. I want to do this without Qt Creator, using regular GDB. This is what I've ...
0
votes
0answers
11 views

qt creator set breakpoint opens different file

I am currently using Qt Creator as a debugger for my C++ Qt project. Recently while in debug mode, whenever I set a breakpoint, Qt opens up a "random" .c file. These include of dl-open.c, poll.c, ...
2
votes
1answer
55 views

Debugging : is it possible to print all local variable (with values) of C code without going into each stack frame?

I am trying to explore gdb, objdump, valgrind and nm tools for debugging purpose in linux. I am able to print local variables using info locals in GDB but I need to go into current stack frame to ...
2
votes
1answer
23 views

How to setup debugger in Eclipse Juno for C/C++ on windows

I installed Eclipse Juno for C/C++ Developers. I created a small sample project with a few .c and .h files and a makefile. The project seems to compile fine and creates an executable. I'm then able ...
2
votes
2answers
42 views

c program seg fault not making sense to me (c beginner)

This program compiles but when run outputs a few of the first print statements in the find() method then issues Segmentation fault:11 when the for loop hits. So I tried debugging with gdb but could ...
0
votes
0answers
36 views

Why does ddd unput a constant stream of '1' into my CLI?

The title pretty much sums it up. I can use gdb without any issue, but when I try to use ddd, as soon as I run the program, its inputting constant "1\n" any idea why?
0
votes
1answer
54 views

gdb backtrace shows malloc

I am debugging process crash ,& the backtrace looks kind of like below. The process is crashing at different points in the code but the all the time backtrace comes down to malloc. I tried ...
0
votes
1answer
35 views

GDB is killing my inferior process

GDB is killing my inferior. Inferior is a long-running (20-30 minutes) benchmark. GDB and inferior are both running under my uid. Runs fine for a while then my signal handler is called with a ...
0
votes
1answer
29 views

gdb: search function by name to set a breakpoint

I'm trying to find out what part of a program prints to stdout. I can set a breakpoint using command like: b std::ostream::operator<<(int) but when i type: b ...
0
votes
1answer
23 views

nodejs, how to do debugging using GDB

After searching in google, I found the below way to do gdb on nodejs application, build node with ./configure --debug option and then do gdb --args ~/node_g start.js Using this I am trying to ...
0
votes
0answers
13 views

Start several gdb processes in terminal emulator in split screen modus

I'm using gdb to debug a parallel mpi-code 'prog'. For that I use a small number of processes, say 'M' and do something like mpiexec -n M xterm -e gdb ./prog This pops up M xterms with each of them ...
0
votes
0answers
9 views

Debug with step filters in eclipse CDT

When I step into functions using Eclipse CDT, I often have to step in and out of many standard library and boost library functions before I get to the code I'm interested in. I think Eclipse JDT ...
0
votes
0answers
49 views

How to generically pretty print C structure values like in gdb?

When debugging a C program with GDB I can easily pretty print values of a structure type. Because GDB has read all symbol/debugging information it knows the layout of that structure. Sometimes I ...
0
votes
1answer
44 views

GDB:how to debug core file in AIX machine

I'm unable to debug core file generated from AIX machine. uname -a AIX dev 1 6 file /usr/bin/ld /usr/bin/ld: executable (RISC System/6000) or object module oslevel -g Fileset - bos.rte ...
0
votes
0answers
28 views

Lazarus: How do I resolve Debbuger GDB error?

After updating and preparing my program for the latest Lazarus compiler, I am finally test running it. However, my program won't even start but raise the following compiler error. What do I do to ...
0
votes
0answers
15 views

How to compare memory dumps in iOS?

I made 2 memory dump files with iOS, and I want to see the difference between these files. I made them with gdb (idk if this is important or not). I read a tutorial to do these dumps, and he said ...
0
votes
1answer
74 views

gdb python : Can anyone explain me how to use this script written in this post?

How to do it for a c code..? Is it possible..? I read this post. I also want to do similar things but i am not able to use the given updated script at link GDB-Python scripting: any samples iterating ...
1
vote
2answers
38 views

Print the whole linked list in gdb?

I have a linked list struct node { data_t data; node_t *next; }; typedef struct { node_t *head; node_t *foot; node_t *curr; // for iterator unsigned int size; } list_t; ...
1
vote
1answer
19 views

When using gdb to debug program, Is there any command output file descriptor information?

When I use gdb to debug a program, I want to look the file descriptor information about the debugging progress. I use "info file", "info proc" commands, but these command outputs don't include file ...
0
votes
2answers
26 views

Pruning backtrace output with gdb script

My program has 100 threads, most of which are idle and share a very well defined backtrace when they are idle. Most of the time I am only interested in the threads that are not idle and therefore do ...
0
votes
0answers
27 views

RHEL 6 — vim version 7.2.411 — gdb Integration

Has anyone had success with integrating gdb and the vim version supported by RHEL 6? If so a link to a tutorial would be nice, or a detailed description.
0
votes
0answers
39 views

Gdb python scripting : How to iterate through a data structure of an user space application using python script

there is a structure in user space C code , and one member of that structure is causing the segmentation fault. so after generating core dump (process is crashed), can i iterate through that structure ...
0
votes
1answer
22 views

Solaris: gdb a.out > run > opens subshell?

Haven't found anything about this. Trying to learn gdb and I get the feeling I'm doing something wrong. I compile the c program with gcc -g program.c -o a.out then use the command gdb a.out ...
1
vote
1answer
87 views
+50

Can GDB be used to print values of allocatable arrays of a derived type in Fortran 90?

I have the following data structure in a Fortran90 program: TYPE derivedType CHARACTER(100) :: name = ' ' INTEGER :: type = 0 REAL(KIND(1.0D0)) :: property = 0.0 END ...
0
votes
1answer
24 views

View/Print function code from within GDB

I am trying to develop a simple text based user interface which runs some gdb commands. I want to user to be able to set and break/trace point at a certain area of the code and run some debug ...
0
votes
1answer
37 views

how to change debuginfo-install repository

[root@new-host ~]# gdb -q hello1 Reading symbols from /root/hello1...done. (gdb) r Starting program: /root/hello1 Program exited with code 0244. Missing separate debuginfos, use: debuginfo-install ...
2
votes
0answers
31 views

How can I shrink large core dumps by removing large data structures?

Our process can use 100s of GB of RAM, which obviously creates issues with the size of core dump files. Large files are bad because they take a long time to write, but also (worse for us) they may ...
0
votes
0answers
19 views

How do I get rbenv to keep debugging symbols?

I installed the development version of Ruby 2 via rbenv on Mac OS X v10.8.3, and am using it to compile a gem I'm working on. I have a memory problem I want to debug. Unfortunately, whenever I run ...
0
votes
0answers
16 views

set tabstop not working for bash [closed]

How do I set the tab width / tab-stop in bash? When I cat file tabs print out with a width of 8. This seems to effect gdb as well. If I set the tab width in bash does this also fix gdb?
-2
votes
1answer
56 views

During startup program terminated with signal SIGKILL, Killed [closed]

Wat could be the reasong,when I run my binary without gdb,It runs fine.And when I run it using gdb it gives me error message During startup program terminated with signal SIGKILL, Killed And in ...
2
votes
4answers
108 views

How can learning assembly language help me in Debugging C programs?

I try writing simple applications and whenever any error occurs, will try to debug and understand what is causing the error. As stated in the title how can learning assembly language help me in ...
0
votes
1answer
42 views

Eclipse CDT / GDB - open core dump?

With Eclipse it is possible to run a process through gdb. This gives us a pretty GUI which can be used to inspect the call stack, variable contents etc. Is it possible to open a core dump in Eclipse ...
2
votes
2answers
30 views

How can I use GDB to get the length of an instruction?

The problem I am trying to solve is that I want to dynamically compute the length of an instruction given its address (from within GDB) and set that length as the value of a variable. The challenge is ...
1
vote
1answer
42 views

gnu ld/gdb: separate debug files. How to produce the debug file when there's too much debug info to link?

There's now gdb and binutils support for separating debug info from the binaries to be debugged. Docs describing this can be found in: gdb: separate debug files objcopy --add-gnu-debuglink, ...
0
votes
1answer
47 views

Xamarin.iOS- Debugging native crash in a bound library using GDB

I have a third-party library on which I did bindings and that I built for archiving using XCode. I use it in my C# Xamarin app. Nevertheless, I had a native crash that I have no way of debugging ...
0
votes
2answers
45 views

Debugging a segfault — program always does as it should but always segfaults

This program is supposed to print a webpage to terminal usage: ./prog www.page.com 80 /folder/index.html program always does as it should but always seg-faults at the end #define _XOPEN_SOURCE 600 ...
0
votes
1answer
29 views

Checking type of variables in dynamically loaded shared libraries in C/C++

I'm working on a test environment of a C library. The library extensively use global variables, what I want to check in the test codes. Unfortunately I have to load the library dynamically (using ...
0
votes
2answers
59 views

Python Scripting : how to execute unix commands inside gdb prompt using python script..?

I want to execute linux commands (eg. bt, break, frame etc) inside gdb prompt using python scripting. for example: i am using subprocess.call(["gdb"], shell=True) this line takes me to (gdb) prompt ...
1
vote
0answers
20 views

GDB disable (y or n) prompts

Is there a way to stop gdb from displaying (y or n) prompts all the time? Example: (gdb) k Kill the program being debugged? (y or n) Help doesn't show anything (gdb) help kill Kill execution of ...

1 2 3 4 5 64