No Universal?

Status
Not open for further replies.

dadidoe

Computer Pro :)
I have a problem with making my app universal. Usually, I select 10.4u as SDK and enter for architectures ppc + i386 but this time it will not work, it's still Intel!

Why?
 
Make sure you're building the Release version of your project. Xcode doesn't build universal binaries with the Debug build configuration.
 
ok theres something wrong with the architekture. When going on Project->Set Active Architecture, the i386 + ppc is devided! it displays i386 seperate, the + seperate and the ppc seperate!
 
You haven't said what version of Xcode you're using. In the Architectures build setting in Xcode 3.1, there is a pop-up button in the Value column. Click the button and choose Standard (32-bit Universal). That should be all you have to do to build a universal binary.
 
Three things to check:

  1. Make sure you clicked Universal 32/bit for the Release build configuration.
  2. Make sure the Build Active Architecture Only build setting is turned off.
  3. Make sure the active build configuration is Release.

If you still can't build a universal binary, someone else will have to help you.
 
Status
Not open for further replies.
Back
Top