Version: CVS (using KDE Devel) There doesn't seem to be any way to see the global variables for the app. Shouldn't there be a tree branch for those that I can open to see them? I can always add watches manually, but that is a pain.
Wish.
I think this can be problematic. "info variables" in gdb will print all global variables, including those from libstd++, such as: const _Ios_Fmtflags std::ios_base::boolalpha; const _Ios_Fmtflags std::ios_base::dec; const _Ios_Iostate std::ios_base::eofbit; const _Ios_Iostate std::ios_base::failbit; and all static constants for all classes. For a simple app, I get several pages, and all symbols are reported to be defined in my .cpp file. Unless there's some sensible way to filter irrelevant variables, adding them all to variables view would not help.
as far as I can see this is a wontfix, especially as you can just add a watch for your global variables.