Development/Tutorials/Debugging: Difference between revisions

    From KDE TechBase
    No edit summary
    (3 intermediate revisions by 3 users not shown)
    Line 1: Line 1:
    Debugging KDE applications can be done on different levels. Most applications "talk" invisibly through debug statements while they are running. Looking at this information mostly gives you enough info to find out what went wrong. For further details, read the dedicated article about [[/Using Error Messages|error messages]].
     
    Debugging KDE applications can be done on different levels. Most applications "talk" invisibly through debug statements while they are running. Looking at this information mostly gives you enough info to find out what went wrong. For further details, read the dedicated article about [[Development/Tutorials/Debugging/Using Error Messages|error messages]].


    On a different level we have post-mortem debugging. This is used ''after'' an application died, probably because of a programming error. The drkonqi dialog allows you to create a '''backtrace''', and possibly find out where it went wrong.
    On a different level we have post-mortem debugging. This is used ''after'' an application died, probably because of a programming error. The drkonqi dialog allows you to create a '''backtrace''', and possibly find out where it went wrong.


    There are debuggers like gdb which can do a lot more than just find out where it went wrong. You should read the man page of gdb to find out more, and possibly download 'kdbg', 'ddd', or 'inspire' which make gdb a lot simpler to use. Read [[/Debugging with GDB|Debugging with GDB]] for a detailed tutorial.
    There are debuggers like gdb which can do a lot more than just find out where it went wrong. You should read the man page of gdb to find out more, and possibly download 'kdbg', 'ddd', or 'inspire' which make gdb a lot simpler to use. Read [[Development/Tutorials/Debugging/Debugging with GDB|Debugging with GDB]] for a detailed tutorial.


    == Related Pages ==
    == Related Pages ==
    *[[/Shared Memory Usage in KDE|Shared Memory Usage in KDE]]
    *[[Development/Tutorials/Debugging/Shared Memory Usage in KDE|Shared Memory Usage in KDE]]
    *[[/Using Error Messages|Using error messages (kDebug)]]
    *[[Development/Tutorials/Debugging/Using Error Messages|Using error messages (kDebug)]]
    *[[/Debugging with GDB|Debugging with GDB]]
    *[[Development/Tutorials/Debugging/Debugging symbols|Debugging symbols]]
    *[[/Debugging IOSlaves|Debugging IOSlaves]]
    *[[Development/Tutorials/Debugging/Debugging with GDB|Debugging with GDB]]
    *[[/Debugging on MS Windows|Debugging on MS Windows]]
    *[[Development/Tutorials/Debugging/Debugging IOSlaves|Debugging IOSlaves]]
    *[[Development/Tutorials/Debugging/Debugging on MS Windows|Debugging on MS Windows]]
    *[[Development/FAQs/Debugging_FAQ|Debugging FAQ]]
    *[[Development/FAQs/Debugging_FAQ|Debugging FAQ]]
    *[[/How to create useful crash reports|How to create useful crash reports]]
    *[[Development/Tutorials/Debugging/How to create useful crash reports|How to create useful crash reports]]
    *For information on debugging tool such as valgrind and [http://kdbg.org/ KDbg], visit the [[../../Tools|tools pages]].
    *For information on debugging tool such as valgrind and [http://kdbg.org/ KDbg], visit the [[../../Tools|tools pages]].
    *[[Development/Tutorials/Debugging/Phonon|Debugging Phonon]]


    [[Category:Programming]]
    [[Category:Programming]]

    Revision as of 18:54, 12 July 2012

    Debugging KDE applications can be done on different levels. Most applications "talk" invisibly through debug statements while they are running. Looking at this information mostly gives you enough info to find out what went wrong. For further details, read the dedicated article about error messages.

    On a different level we have post-mortem debugging. This is used after an application died, probably because of a programming error. The drkonqi dialog allows you to create a backtrace, and possibly find out where it went wrong.

    There are debuggers like gdb which can do a lot more than just find out where it went wrong. You should read the man page of gdb to find out more, and possibly download 'kdbg', 'ddd', or 'inspire' which make gdb a lot simpler to use. Read Debugging with GDB for a detailed tutorial.

    Related Pages