Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 1 and Version 2 of code/tools/Debugging


Ignore:
Timestamp:
Oct 7, 2008, 11:01:04 AM (16 years ago)
Author:
rgrieder
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/tools/Debugging

    v1 v2  
    11= Debug Tools =
    2 Most times debugging without a debugger is really hard. In complex programms printing text and values of variables to the console is not an option for debugging anymore. Being able to handle a debugger like GDB oder DDD makes (coders) life much easier.
     2Most times debugging without a debugger is really hard. In complex programms printing text and values of variables to the console is not an option for debugging anymore. Being able to handle a debugger like GDB oder DDD makes (coder's) life much easier.
    33
    44== GDB ==
    55GDB is the standard (console based) unix debugger.
    66=== Basic usage ===
    7 To simply run the program and wait for a segfault follow the below instructions.
     7To simply run the program and wait for a segfault follow the instructions below.
    88 1. Go to the binary directory (bin) and run '''gdb orxonox'''
    99 2. Type '''run'''
     
    2626== DDD ==
    2727DDD is a simple graphical debugger based on GDB.
     28
     29== Microsoft Visual Studio Debugger ==
     30Yet to come.