Difference between revisions of "Debugging with Code::Blocks"

From Code::Blocks
m
m
Line 1: Line 1:
 +
Make sure that the project is compiled with the -g compiler option.
 
Menu => Project => Build Options
 
Menu => Project => Build Options
 
[[Image:DbgProjBuildOpt.png|Set Project Build Options]]
 
[[Image:DbgProjBuildOpt.png|Set Project Build Options]]
  
Open The Watches Window
+
Open The Debugger Watches Window
 
[[Image:DbgWatchWindow.png|Open Watch Window]]
 
[[Image:DbgWatchWindow.png|Open Watch Window]]
  
 +
Find the line containing the variable to be watched. Set a breakpoint in a position that will allow you to observe the variable value.
 
Menu => Debug => Toggle Breakpoint
 
Menu => Debug => Toggle Breakpoint
  
 
[[Image:DbgSetWatchVar.png|Choose Watch Variable]]
 
[[Image:DbgSetWatchVar.png|Choose Watch Variable]]
 +
 +
Run the debugger until the breakpoint is reached. Right click the variable to set a watch in the Watch Window.

Revision as of 00:47, 26 October 2006

Make sure that the project is compiled with the -g compiler option. Menu => Project => Build Options Set Project Build Options

Open The Debugger Watches Window Open Watch Window

Find the line containing the variable to be watched. Set a breakpoint in a position that will allow you to observe the variable value. Menu => Debug => Toggle Breakpoint

Choose Watch Variable

Run the debugger until the breakpoint is reached. Right click the variable to set a watch in the Watch Window.