0

I have a project whose target is a Bundle . Now I need to make this bundle universal for all architectures. Now I refered this and this SO Post

The post says that Xcode 3.2 automatically makes the targets universal in Release mode

But it doesn't seem to work . I am using Xcode 3.2.6 and my Operating System is MAC OS X 10.6.8 . Can anyone please help me

Community
  • 1
  • 1
ping localhost
  • 479
  • 3
  • 22

1 Answers1

0

Problem solved :

You just need to add the 3 architectures :

1)ppc

2)i86

3) x86_64

under the active architectures of the target

ping localhost
  • 479
  • 3
  • 22
  • Probably, you will have to also set "Build Active Architecture Only" (-ONLY_ACTIVE_ARCH) to No. As I see, only settings available are "Architecure" (-ARCHS) and "Valid Architectures" (-VALID_ARCHS), no property named active architecure (it is something that xcode will decide based on the build machine, I think.) – Vishal Jan 13 '12 at 10:36