Xcode 2.3: enums in debugger are <incomplete type> & more
Xcode 2.3: enums in debugger are <incomplete type> & more
- Subject: Xcode 2.3: enums in debugger are <incomplete type> & more
- From: "Robert J. Lang" <email@hidden>
- Date: Mon, 05 Jun 2006 11:54:50 -0700
- Thread-topic: Xcode 2.3: enums in debugger are <incomplete type> & more
Hi,
Since upgrading to Xcode 2.3 and converting my project to DWARF (Generate
Debug Symbols is on with level -gfull), I find that for enumerated type
variables that were declared within a class (e.g.
Class MyClass {
public:
typedef enum { SOMETHING1, SOMETHING2 } SomeEnum;
...
}
when stopping at a breakpoint in the debugger, all variables of type
SomeEnum display a value of "<incomplete type>" in the debugger (although if
I turn on Show Types, the type is displayed properly as "enum SomeEnum").
Any hints on how to persuade the debugger to show enum values again?
On a possibly related note, the "step over" command in the debugger now
sometimes jumps into a new, unrelated header file rather than stepping to
the next line of code in the file. (Usually it jumps to the same line of the
header file no matter where the breakpoint was set.) Also, the routine at
the top of the call stack is unrelated to the line displayed in the bottom
of the debugger pane. Does this description suggest any approaches for a
fix?
Thanks,
Robert
_______________________________________________
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