|
A Debugger is most of the time very difficult to use unless there is a front-end for it. Also a profiler is usefull for code optimization and Debugging.
List of front-ends alowing easy debug
- All Integrated development environments come with integrated debuggers (or front-ends to standard debuggers).
- DDD, is the standard front-end from the GNU project. It a very complex tool and works with most known debuggers (gdb, jdb, python debugger, perl debugger, tcl, and other) natively or with some external programs (for PHP).
- KDbg (http://members.nextra.at/johsixt/kdbg.html) is a graphical user interface to gdb, the GNU debugger.
Other links
- jlint (http://artho.com/jlint/) Jlint checks Java code and finds bugs, inconsistencies and synchronization problems by doing data flow analysis on the code and building the lock graph.
|