Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

windows version of the GDB frontend DDD

Tags:

Is there a native (not cygwin) version of DDD available for download somewhere?

like image 623
BCS Avatar asked Oct 15 '09 19:10

BCS


People also ask

Is there a GUI for gdb?

gdbgui is a browser-based frontend to gdb , the gnu debugger. You can add breakpoints, view stack traces, and more in C, C++, Go, and Rust! It's perfect for beginners and experts. Simply run gdbgui from the terminal to start the gdbgui server, and a new tab will open in your browser.

What is DDD gdb?

For C and C++ programs, gdb and ddd are debuggers that you can use. ddd is a easy-to-use GUI wrapper around an inferior debugger (gdb for GNU compiled C or C++ code). ddd allows you to interact with the debugger by using either GUI menu options or the under-lying debugger's command line interface.

How do I open DDD?

To run DDD, you need the GNU debugger (GDB), version 4.16 or later (or depending on the program to be debugged, possibly other command-line debuggers such as Ladebug, JDB, XDB, the Perl debugger, the bash debugger bashdb, the GNU Make debugger remake, or the Python debugger pydb.)

What is DDD command in Linux?

DDD is a graphical front-end for GDB and other command-line debuggers. Using DDD, you can see what is going on "inside" another program while it executes-or what another program was doing at the moment it crashed.


1 Answers

DDD has not been ported to Windows AFAIK. But there ARE native gdb, which can be perfectly built using MingW32. You can also build Insight natively using Mingw32. You can also give a try to BeaverDbg

like image 137
RonBlackCultist Avatar answered Oct 18 '22 14:10

RonBlackCultist