Questions tagged [ddd-debugger]

Data Display Debugger (DDD). A GUI based front-end for command line debuggers. Distributed under the GNU GPL license.

The Data Display Debugger has GUI front-end features such as code browsing, data display and interactive graphic displays. DDD is primarily used on Unix based systems.

91 questions
0
votes
0 answers

Assembly code involving compare

080484b4
: 80484b4: 55 push %ebp 80484b5: 89 e5 mov %esp,%ebp 80484b7: 57 push %edi 80484b8: 53 push %ebx 80484b9: 83 e4 f0 …
Joe
  • 1,076
  • 3
  • 10
  • 17
0
votes
2 answers

gdb with ddd scripting -> graph undefined command

I use ddd as frontend for gdb. I want to prepare a small file which contains some commands like (gdb) graph display x But if I do a (gdb) source myfile and myfile contains any graph command the result is: (gdb) source myfile x:1: Error in sourced…
Klaus
  • 24,205
  • 7
  • 58
  • 113
0
votes
5 answers

GDB (DDD), debugging questions

Some things in GDB (actually using DDD gui) confuse me, when debugging my own C++ codes: 1) Why is there no backtrace available after a HEAP ERROR crash? 2) Why does gdb sometimes stop AFTER the breakpoint rather than AT the breakpoint? 3) Sometimes…
PetrH
  • 1
0
votes
1 answer

using insight or ddd with working gdb session

I have the script that pre-configures host, runs sh4-linux-gdb, connects to target and pre-configures it. After script execution I get regular (gdb) prompt. Is there any way to "bind" this output to insigt or ddd, and control this instance via gui…
Bartlomiej Grzeskowiak
  • 1,009
  • 5
  • 16
  • 35
0
votes
1 answer

ddd no debug symbols are found

I build my project with "./configure CFLAGS=-g3" , also tried "make CFLAGS=-g3". when I load slim.exe with ddd, it say no debug symbols are found. How can I create slim.exe with debug symbols, and I load it to ddd and perform debugging? is there any…
arslan
  • 2,034
  • 7
  • 34
  • 61
0
votes
0 answers

ddd-debugger error: updating display and takes too long to display

my ddd debugger is taking too long to display, usually it didn't take so long. Anybody has any ideas why this is happening? Any setting or anything that is required to be configure. Thanks !!
user2370590
  • 837
  • 1
  • 16
  • 31
0
votes
1 answer

GDB and DDD incomplete type

I have read and not understood the current available material. I only installed Linux last spring and taught myself how to program C++ at that time as well. I am very new to this. I am trying to debug a program which is using the Trilinos package…
0
votes
1 answer

Change memory address content with ddd

How can I change the content of a memory address using ddd?
Ivan
  • 1,801
  • 2
  • 23
  • 40
0
votes
1 answer

DDD Runtime (?) error

While i was using DDD for debugging some C code i wrote, it came out with this strange error when i tryed to execute a line in which was a malloc $/BRIS/src/malloc.c : No such file or directory $/BRIS/src/ is where my compiled C file is…
Arrigo Pierotti
  • 203
  • 4
  • 10
  • 18
0
votes
1 answer

Starting debugging with DDD

I would like to use DDD to debug the source code of Gedit and GTK+. I start DDD by command ddd gedit. Now I can run the project and I found the source window but I can't see the sources of Gedit and GTK+ nor run the program line by line. How to do…
Jaska
  • 775
  • 1
  • 8
  • 13
0
votes
1 answer

How can I fix Fortran Module Variables being listed as in Apple GDB

Apple Xcode is unable to display any Fortran Module Variables. Module variables can be viewed by going to the Run Menu -> Show -> Global Variables The mangling of module variables with their variable name is clear. But when listing the value of the…
EMiller
  • 2,792
  • 4
  • 34
  • 55
0
votes
1 answer

execution behavior is different when the program is run without debugger and with it

I am running a program in linux. The behavior of the program is different when i run it in ddd debugger and without it. That is the program halts at different points. Why is it so? Is it debugger dependent or it happens sometimes with every…
ajay bidari
  • 693
  • 2
  • 10
  • 22
0
votes
1 answer

Does DDD support Perl?

Can DDD (Data Display Debugger) be used for Perl data structures?
joe
  • 34,529
  • 29
  • 100
  • 137
-1
votes
1 answer

ddd debugger: Does exe need to be built within CygWin?

On Windows I normally build my exe in a Windows command prompt with the VC Compiler and my own hand crafted makefile. I was thinking of transitioning to g++. To remove my dependency on MSVC I was thinking of installing CygWin/X and to avail of the…
ScrollerBlaster
  • 1,578
  • 2
  • 17
  • 21
-1
votes
2 answers

How to execute an M- file line by line in Octave?

I don't have Matlab installed in my computer, but found I can use Octave in my Ubuntu machine that I installed long time ago. The Octave version on my CentOs machine is too low to run the program. In VOC2012 devtools, I see example_classifier.m…
Chan Kim
  • 5,177
  • 12
  • 57
  • 112