Globals not shown in Xcode Globals Browser
Globals not shown in Xcode Globals Browser
- Subject: Globals not shown in Xcode Globals Browser
- From: Robert Purves <email@hidden>
- Date: Mon, 13 Oct 2008 15:23:58 +1300
I create a project with only main.c as source:
// main.c -------
#include <unistd.h>
int gGlobalA;
int main ( void)
{
sleep( 1000 );
return 0;
}
//---------------
After Build and Debug, Xcode's Globals Browser correctly shows
gGlobalA. So far, so good.
Next, I add test.c as another source file:
// test.c -------
int gGlobalB;
//---------------
Xcode's Globals Browser now shows only shows gGlobalB. gGlobalA has
gone.
The problem is identical in Xcode 3.1 and 3.1.1.
How can I get both global variables to show?
Robert P.
_______________________________________________
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