Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

floyde

macrumors 6502a
Original poster
Apr 7, 2005
808
1
Monterrey, México
I'm about to write my first ever Mac software :) . So I was wondering, will a universal binary work under Panther? I need to support the following platforms: PPC-Panther, PPC-Tiger, Intel-Tiger. I noticed that Xcode 2.3 allows the following build options: Mac OS X 10.3.9, Mac OS X 10.4 (Universal).

Does this mean that I'll have to compile a version of my software for Panther and one for Tiger (PPC & Intel)? Also, what ever happened to Mac OS X 10.4 PPC-only? thanks
 

robbieduncan

Moderator emeritus
Jul 24, 2002
25,611
893
Harrogate
Universal binaries should work under 10.3.9 (not sure about earlier versions of 10.3). Note that you have to take care not to use APIs that were not available in 10.3.9.

PosterPaint (an app I am writing) is developed against the 10.4U SDK and runs fine under 10.3.9.
 

HiRez

macrumors 603
Jan 6, 2004
6,265
2,629
Western US
floyde said:
Thanks! I'll be careful with that.
This also means making sure your NIBs are compatible (you can check using the Compatibility Checking... item in the File menu of IB). Also note that if you lay out a GUI using a 10.4.x machine, using your app on a previous version may look different than you expect, so make sure you test it on those platforms. I know I've had some issues in the past where the look/spacing of some of the GUI widgets changes slightly when used on different versions.
 

szymczyk

macrumors regular
Mar 5, 2006
187
17
floyde said:
So I was wondering, will a universal binary work under Panther?
You can get a universal binary to run under Panther if you set up Xcode properly. You must create a build setting called MACOSX_DEPLOYMENT_TARGET_ppc. This setting is the earliest version of Mac OS X that can run your program on PowerPC Macs. Give this setting the value 10.3 to support Panther.

If you're writing a C++ program, you also have to compile the PowerPC version with gcc 3.3 to get it to work on anything earlier than 10.3.9. You have to create another build setting, GCC_VERSION_ppc. Give it the value 3.3.
 

floyde

macrumors 6502a
Original poster
Apr 7, 2005
808
1
Monterrey, México
HiRez said:
This also means making sure your NIBs are compatible (you can check using the Compatibility Checking... item in the File menu of IB).
szymczyk said:
If you're writing a C++ program, you also have to compile the PowerPC version with gcc 3.3 to get it to work on anything earlier than 10.3.9. You have to create another build setting, GCC_VERSION_ppc. Give it the value 3.3.
Thanks, I'm doing a Webkit plugin using Objective-C, so I wont be using any interface stuff for now. Hopefully I'll get a chance to develop something with widgets in the future (it's much more fun than coding in .NET for boring Windows ;) )
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.