n8blog
distraction in action

Like my work? Check out HexaLex, my game for iPhone & iPod Touch. It's a crossword game like Scrabble, but played with hexagonal tiles. http://www.hexalex.com

Here’s a tip for fellow XCode users. If you want to release a single app/plugin/whatever that will work on both 10.3 and 10.4 intel/ppc, this guy’s blog post gives you the deets. I know he talks about AppleScript Studio, but ignore that and focus on the XCode bits.

Long story short, for the impatient, you need to define four new build settings (use the + at the bottom of the build tab of the project inspector). You probably only want to define them for your Release configuration, since you’ll presumably only be developing on one machine at a time:

MACOSX_DEPLOYMENT_TARGET_ppc = 10.3
MACOSX_DEPLOYMENT_TARGET_i386 = 10.4
SDKROOT_ppc = /Developer/SDKs/MacOSX10.3.9.sdk
SDKROOT_i386 = /Developer/SDKs/MacOSX10.4u.sdk

Make sure that the Architectures build setting is set to “ppc i386″ (without the quotes) and you’re golden.

  • Share/Bookmark

  Comments:

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="">

Please type this word with the letters reversed: live

Like my work? Check out HexaLex, my game for iPhone & iPod Touch. It's a crossword game like Scrabble, but played with hexagonal tiles. http://www.hexalex.com