Data Display Debugger (DDD). A GUI based front-end for command line debuggers. Distributed under the GNU GPL license.
0
votes
1answer
38 views
Why isn't ddd displaying the source code?
When I run my ddd, it doesn't display the source code. The source window is blank. The execution is still there for example I can step through the program but there is no visual indication where in ...
4
votes
0answers
120 views
Hide static data members in DDD, or show only certain members
My DDD data display window is overcrowded because every object is listed with its static data members as well as its instance data members.
Is there an option to hide these?
EDIT: Even better, can I ...
0
votes
1answer
21 views
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 ...
0
votes
0answers
28 views
How can I display an array in DDD?
So, I have this structure:
typedef struct node_t {
struct node_t *precursor;
adj_node *adj_next;
int discovered;
int end;
color _color;
} node;
and then I made an ...
-1
votes
1answer
30 views
Change memory address content with ddd [closed]
How can I change the content of a memory address using ddd?
0
votes
1answer
73 views
Starting ddd with remote gdbserver
I'm debugging a program that runs on a remote target using ddd ( the remote gdbserver is running on localhost over port 1234 for example, but still acts as remote).
I know you can connect to the ...
0
votes
1answer
234 views
gdb/ddd Program received signal SIGILL
I wrote a very simple program in Linux using c++, which downloads images from some website over http (basically developed a http client request), using cURL libraries. ...
0
votes
1answer
28 views
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 ...
1
vote
1answer
93 views
Why am I getting this error when trying to open a file with DDD?
Debugger: DDD.
64-bit Ubuntu Precise Pangolin system.
Whenever I try to open a very simple C program in ddd I get the following error:
Warning: This program is an suid-root program or is being run ...
0
votes
0answers
44 views
Using Nemiver debugger in AIX
I'm trying to get up and running with Nemiver. However, I need to be able to use it on AIX. Is there any way to do this? I'm having troubles finding any documentation for AIX usage.
I'm also open to ...
0
votes
0answers
61 views
How to check if my mac has LessTif
I am trying to install ddd (data diaplay debugger) on my mac. the ./configure fails. so i was wondering if i have LessTif (which is a requirement) installed on my mac. is there a command that i can ...
1
vote
0answers
38 views
error in DDD, trying to find location of SEGFAULT
whenever i try to run ddd ./draw2& to find where my seg fault occurs it doesnt work. i get this error
/home/dsk 13/ugrad/twendlan/C201/Assignment2/drafts/sysdeps/x86_64/strcmp.S: No such file or ...
0
votes
0answers
53 views
Is there a way to get DDD to graph Python structures?
I was trying to use DDD (Data Display Debugger) to debug some Python code, and I tried having it graph diffrent data structures, but it always just hangs.
Is there anyway to get DDD to be able to ...
0
votes
1answer
124 views
How can I fix Fortran Module Variables being listed as <unknown type> 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 ...
2
votes
2answers
140 views
Interpreting eFlags in DDD
I am attempting to learn how to write and understand x86 Assembly as well as how to use GDB and related tools effectively. To do this, I am using DDD as a front-end for GDB.
I am having trouble ...
0
votes
0answers
147 views
missing source code linkage in DDD+idb
I have already posted my urgent question to Intel fortran forum, but I do not have luck to get any solutions yet. I hope I would have a better luck to see someone who has experienced this error ...
0
votes
0answers
93 views
Debugger ddd does not let me set breakpoints on future shared libraries
Folks,
My C/C++ application loads a few shared libraries dynamically as needed.
When I run gdb to debug the application, I can set a breakpoint on a shared library that has not yet been loaded. The ...
0
votes
0answers
13 views
How to know value of a non integer variables using watch points in ddd?
I am debugging a C++ program using ddd. I have created watch points for a string variable. I am not able to look at the value of that variable.
0
votes
1answer
31 views
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 ...
0
votes
0answers
182 views
ddd jdb, setting classpath and sourcepath
I need to create deep copies of a lot of objects I'm working with. To see if my deepCopy methods work correctly I need to use a debugger and check the IDs of a lot of instances.
Using only JDB I can ...
1
vote
0answers
176 views
Visual display Debuggers like DDD
I am having massive troubles installing ddd on my Mac OSX lion.
Anyone know of any other visual display debuggers like ddd ?
It has to Visual display debugger.
I have eclipse on my mac , does it ...
2
votes
2answers
240 views
Can't set breakpoints when using gdb in emacs (or DDD)
I'm trying to use gdb with emacs. The library that I'm trying to debug is loaded by a process and can't be run directly. Hence I attach to the process by using the attach command inside gdb. Attaching ...
-1
votes
1answer
122 views
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 ...
0
votes
1answer
124 views
C Buffer overflow Display message (Using Ubuntu and DDD)
#include <stdio.h>
#include <stdlib.h>
void badf(int n, char c, char* buffer)
{
int i;
for (i=0; i<n; i++)
{
buffer[i]=c;
}
}
void f(int n, char c)
{
char ...
1
vote
1answer
329 views
What is gdb/dbx doing when ddd is “waiting for it to get ready”?
I use ddd as a front-end for both gdb and dbx for C++ programs.
Quite often, without any apparent cause, I will try to next and it will hang with the message "Waiting for gdb to get ready" or ...
3
votes
1answer
187 views
Generate a coredump from crashed process attached to ddd/dbx
I'm running dbx in ddd on Solaris. The attached process has crashed and I can examine the stack in the debugger.
I want to save this core dump to disk for later.
Google shows me several ways to ...
0
votes
2answers
234 views
How to find where a process is stuck using DDD
I have a TCP Svr process written in C and running on CentOS 5.5. It acts as a TCP Server for external clients and also does some IPC communication with other processes in the system using Unix Domain ...
1
vote
2answers
502 views
getting info about threads in gdb/ddd
I am debugging a multi threaded application using ddd.
At the same time each second I can see on DDD console out that a new thread is created
[NewThread 0x455fc940 (LWP 27373)]
and destroyed ...
0
votes
5answers
339 views
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 ...
0
votes
0answers
380 views
Installing x86_64 version of ddd, but missing .so libraries
I am trying to install ddd on my x86_64 GNU/Linux machine. I have tried installing a few different versions of ddd, but when I type "rpm -i ddd..." I get:
ddd-> rpm -i ...
2
votes
2answers
7k views
warning: (Internal error: pc 0x804a6b0 in read in psymtab, but not in symtab.) g++
I am trying to debug a program using ddd. When I try to enter any function, or within main() itself, I get the following warning:
warning: (Internal error: pc 0x804a6b0 in read in psymtab, but ...
4
votes
2answers
1k views
ddd hangs on start
Question has been asked before and I see bug report on ddd newsgroups but none of the suggested solutions work for me.
It comes up but when you try doing anything like opening a file it hangs with ...
4
votes
2answers
1k views
How to skip past loops in ddd (gdb)
During many, sometimes inundating, debugging sessions using DDD, I stumble upon loops. And I keep pressing next to get past it, and if there are many iterations, I just set a break point right after ...
2
votes
3answers
553 views
How to change Motif theme in DDD and Insight to something more pleasant?
I have Tk version 8.5.3 installed, theming engine support added since 8.5. Still, I don't know how to use themes, default Motif is just ugly:
Screenshot
7
votes
2answers
4k views
Remote debugging using gnu DDD
Question:
Is it possible to debug, when the target is on a remote host?
Example:
# ddd --debugger /usr/bin/bashdb <sript-name> (on remote host)
1
vote
2answers
271 views
ddd debugger enters an infinite loop when the program tries to read console input
when a C++ program reads from cin, the ddd provides it with "1" instead of letting me type the input in its console. Since the program reads interactive commands, "1" is an invalid command and ddd ...
4
votes
3answers
236 views
Can DDD account for strings?
I am trying to figure out a problem in my c++ code and have DDD to debug with on a Sun machine. I am required to use strings per some standard we have. But whenever DDD encounters a string variable, ...
0
votes
0answers
123 views
ddd display long list
When tab or !ls in command window in ddd, there're always a long list to display in the command window. However, unlike other pager behavior, ddd will not stop and let you hit enter or something to ...
0
votes
2answers
467 views
DDD debugger: save A command history between sessions
I noticed that my command history remains only during the current session, and once I re-start ddd, say with the same process, it starts with a clean slate. Is there way I can force the latest history ...
1
vote
3answers
165 views
ddd gets inactive when mouse is moved out of its window
My ddd window doesn't take any keyboard input when my mouse cursor is moved out of the window. Although ddd window is still active, but it doesn't take any inputs. I will have to move my mouse over ...
2
votes
0answers
213 views
Can one configure gdb/ddd to never step into certain functions? [duplicate]
Possible Duplicate:
Preventing GDB from stepping into a function (or file)
I have some infrastructure C++ code (containers, memory managers etc.) and I want the debugger to never step into ...
1
vote
1answer
186 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.
5
votes
3answers
1k 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, just wanted to ...
1
vote
2answers
635 views
ddd hangs on start
When I start ddd, it seems hang waiting for gdb. Here is the tail end of output ddd --trace:
# Saving session in ...
7
votes
5answers
16k views
windows version of the GDB frontend DDD
Is there a native (not cygwin) version of DDD available for download somewhere?
1
vote
2answers
1k views
How can I debug a program using scanf with ddd?
When ddd encounters a scanf statement, it displays "Waiting until GDB gets ready" message. The debugging activity stops here. Please guide me of overcoming this bug.
I'm using an amd64 athlon ...
0
votes
1answer
554 views
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 ...
24
votes
8answers
7k 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 ...
0
votes
1answer
355 views
3
votes
4answers
4k views
What's the bare minimum Cygwin install to have DDD running properly on XP?
I’m using the gcc in MinGW that comes with Strawberry Perl, on Windows XP. I’d like to have ddd (the Data Display Debugger) as well but apparently on Windows the simplest way to get ddd is by running ...

