RE: Building Release version with hidden architectures in Xcode Project
RE: Building Release version with hidden architectures in Xcode Project
- Subject: RE: Building Release version with hidden architectures in Xcode Project
- From: Stéphane Beauchemin <email@hidden>
- Date: Thu, 5 Mar 2009 11:53:49 -0500
- Thread-topic: Building Release version with hidden architectures in Xcode Project
Ok, I think I finally got it.
I have about 10 libs that I am porting but this one is the only one that has intel specific code. So, this library was the only one to have the problem.
I thought that with those setting I was generating only i386, x86_64 but I was generating ppc code too...
Finally, I got the right settings:
ARCHS = i386 x86_64
VALID_ARCHS = i386 x86_64
These were my previous settings:
ARCHS = $(ARCHS_STANDARD_32_64_BIT)
VALID_ARCHS = i386 x86_64
It is still weird to me that ppc and ppc64 were not specified as a Valid Architecture but XCode was still building those architectures... So what is the purpose of the VALID_ARCHS then?
Anyways that goes past the subject of this thread... Thanks for everyone help.
Stephane
-----Original Message-----
From: Chris Espinosa [mailto:email@hidden]
Sent: March-05-09 11:31 AM
To: Stéphane Beauchemin
Cc: Nick Zitzmann; email@hidden
Subject: Re: Building Release version with hidden architectures in Xcode Project
On Mar 5, 2009, at 7:16 AM, Stéphane Beauchemin wrote:
> ARCHS = $(ARCHS_STANDARD_32_64_BIT)
This sets the built architectures for this configuration to ppc,
ppc64, i386, x86_64, so each source file is built 4 times.
The reason you're seeing raw values instead of the normal build
settings table is due to a bug in Xcode 3.1.2 and can be addressed by
setting the Active SDK (in the toolbar popup) to the same value as the
Base SDK (in this case, 10.5).
Chris
_______________________________________________
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