Prof. Falken
Prof. Falken

Reputation: 24867

Universal Binary supporting i386, x86_64 and PPC

Can you build an OSX program supporting i386, x86_64 and PPC at the same time?

Upvotes: 1

Views: 607

Answers (2)

JWWalker
JWWalker

Reputation: 22707

If you use Xcode, you don't have to use lipo, just list those architectures in the Architectures [ARCHS] build setting. Of course, you can't use Xcode 4, as it does not support ppc.

Upvotes: 2

Prof. Falken
Prof. Falken

Reputation: 24867

The answer would seem to be yes, you combine them all with the lipo tool.

Upvotes: 1

Related Questions