Re: Debugger questions
Re: Debugger questions
- Subject: Re: Debugger questions
- From: Jan Hegewald <email@hidden>
- Date: Fri, 3 Feb 2006 08:15:15 +0100
Am 03.02.2006 um 06:23 schrieb David Dunham:
I keep missing a feature from CodeWarrior (and Visual Studio),
where you can point to a variable and see its value. This is
especially handy for instance data (of "this" or "self"), which
doesn't directly show up in the variable list. Am I just missing
where you enable this?
You can try the p command in the gdb console.
Example:
int foo = 42;
and in gdb console:
(gdb) p foo
$1 = 42
HTH,
--Jan--
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden