Difference between revisions of "Debugger scripts"

From Code::Blocks
 
m
Line 3: Line 3:
 
Debugger scripts are similar to [http://www.codeproject.com/csharp/ImageVisualizer.asp Visual Studio Debugger Visualizer]. It allows you to write a small piece of code that gets executed by the debugger whenever you try to view a specific type of variables.
 
Debugger scripts are similar to [http://www.codeproject.com/csharp/ImageVisualizer.asp Visual Studio Debugger Visualizer]. It allows you to write a small piece of code that gets executed by the debugger whenever you try to view a specific type of variables.
  
Quote from Game_Ender
+
Quote from Game_Ender - March 23, 2006
  
 
''I don't think its possible to open up another window to visualize something but the can you make a debugger script.  This script is called by Code::Blocks when ever GDB encounters your variable type and can be used to show custom text with the important information you need in it.  Search for "debugger scripts" on the forum.  I don't think this feature is documented.''
 
''I don't think its possible to open up another window to visualize something but the can you make a debugger script.  This script is called by Code::Blocks when ever GDB encounters your variable type and can be used to show custom text with the important information you need in it.  Search for "debugger scripts" on the forum.  I don't think this feature is documented.''

Revision as of 15:22, 1 April 2006

Debugger scripts

Debugger scripts are similar to Visual Studio Debugger Visualizer. It allows you to write a small piece of code that gets executed by the debugger whenever you try to view a specific type of variables.

Quote from Game_Ender - March 23, 2006

I don't think its possible to open up another window to visualize something but the can you make a debugger script. This script is called by Code::Blocks when ever GDB encounters your variable type and can be used to show custom text with the important information you need in it. Search for "debugger scripts" on the forum. I don't think this feature is documented.

The forum has the following topics:

  • [/index.php?topic=2097.0 Custom Watch Script Pluggins]
  • [/index.php?topic=2636.0 Change the format in the debugger]
  • [/index.php?topic=2150.0 Watches modification]