On Mar 31, 2011, at 12:29 AM, Gabriel Zachmann wrote: > So, here are (hopefully) all relevant settings that are in effect when I > compile using the configuration "release 10.5": > ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
If you still want to support PowerPC, then you need to change this to "i386 ppc x86_64". The reason is because the latest point release of Xcode 3.2 dropped ppc from the list of standard architectures, so if you don't add it manually, then there will be no PPC build. > MACOSX_DEPLOYMENT_TARGET = 10.5; You should change this to 10.6 for the x86_64 build only. > SDKROOT = macosx10.5; You should also change this to macosx10.6 for the x86_64 build only. Nick Zitzmann <http://www.chronosnet.com/> _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
