Difference between revisions of "Debuggers"
(→Debugging support by compiler and platform:) |
|||
Line 83: | Line 83: | ||
| url = http://projects.gnome.org/nemiver/ | | url = http://projects.gnome.org/nemiver/ | ||
}} | }} | ||
+ | |||
{{Project | {{Project | ||
| name = '''CGDB''' | | name = '''CGDB''' | ||
Line 89: | Line 90: | ||
| about = Command line frontend to the GDB debugger, which supports full D syntax from version 7.2.Shows code and the GDB console in split windows. | | about = Command line frontend to the GDB debugger, which supports full D syntax from version 7.2.Shows code and the GDB console in split windows. | ||
| url = http://cgdb.github.com/ | | url = http://cgdb.github.com/ | ||
+ | }} | ||
+ | |||
+ | {{Project | ||
+ | | name = '''DDD''' | ||
+ | | platform = Linux | ||
+ | | license = GPL | ||
+ | | about = GNU DDD is a graphical front-end for command-line debuggers such as GDB. Usual front-end features such as viewing source code, viewing variables, etc. | ||
+ | | url = http://www.gnu.org/software/ddd/ | ||
}} | }} | ||
}} | }} |
Revision as of 13:07, 16 October 2013
Debugging support by compiler and platform:
Compiler/Platform | Format | Debugger | Supported functionality |
---|---|---|---|
DMD-Win32 | OMF | VisualD (VisualStudio) | Good support: Breakpoints; Stack frames; Mostly pretty names ('.' shows up as '@'); Variable inspection; |
DMD-Win32 | OMF | ddbg | Doesn't seem to be working well. Project no longer maintained. |
DMD-Win64 | COFF | VisualD (VisualStudio) | TODO: same level of support as for win32? |
DMD-Linux | DWARF on PE | GDB | same as GDC-Linux? |
GDC-Win32/64
GDC-Linux |
DWARF | GDB | Good support: Breakpoints; Stack frames; Pretty names; Variable inspection; |
any? | DWARF | ZeroBUGS | "Modular debugger for C/C++/D programming languages (and virtually anything else that supports Stabs/DWARF debug formats)". Supported debugging functionality?? |
GDC-MacOS | (?) | GDB | Limited/outdated support? According to Jacob Carlberg:
"D symbols need to be prefixed with an extra underscore." "Line numbers don't work." |
LDC | (?) | LLDB | ? |