Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Restoring PPC, SDK 10.4/10.5 and GCC 4.0 Support to Xcode4' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Restoring PPC, SDK 10.4/10.5 and GCC 4.0 Support to Xcode4
Authored by: .max on Jun 25, '11 02:50:20PM
For a complete PPC support I'd also recommend editing this file:
/Developer/Platforms/MacOSX.platform/Developer/Library/Xcode/Specifications/MacOSX Architectures.xcspec

And adding this text to the list in that file:

{
	Type = Architecture;
	Identifier = ppc;
	Name = "Minimal (32-bit PowerPC only)";
	Description = "32-bit PowerPC";
	PerArchBuildSettingName = "PowerPC";
	ByteOrder = big;
	ListInEnum = No;
	SortNumber = 201;
},
 
That way PPC arch will be in the build settings. I've been using every release of Xcode 4 with 10.5+i386/ppc project for a year now no problem.

[ Reply to This | # ]