Me! Me! I can answer this one! :) On 6 December 2010 11:03, Kjow <[email protected]> wrote: > Hi all, > > I need to read a variable value with a breakpoint. I use gdb. > I stopped my application with a breakpoint and now I need to read a > value of a variable, but I don't know how.
Place the cursor over the variable's name. If the variable is accessible at the time (i.e. if it's a global variable or a variable that the compiler's optimising hasn't overwritten, the value of the variable will show in a box. Alternately, you can use the watches. View->Debug Windows->Watches. Right click to add your variable(s). -- _______________________________________________ Lazarus mailing list [email protected] http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
