Changes between Version 1 and Version 2 of code/tools/Debugging
- Timestamp:
- Oct 7, 2008, 11:01:04 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/tools/Debugging
v1 v2 1 1 = 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 (coder s) life much easier.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 (coder's) life much easier. 3 3 4 4 == GDB == 5 5 GDB is the standard (console based) unix debugger. 6 6 === Basic usage === 7 To simply run the program and wait for a segfault follow the below instructions.7 To simply run the program and wait for a segfault follow the instructions below. 8 8 1. Go to the binary directory (bin) and run '''gdb orxonox''' 9 9 2. Type '''run''' … … 26 26 == DDD == 27 27 DDD is a simple graphical debugger based on GDB. 28 29 == Microsoft Visual Studio Debugger == 30 Yet to come.