Alex
Alex

Reputation: 7612

xcode - Using Apple LLVM compiler 3.0 to compile for PowerPC CPUs

I'm working on someone else's application and so far he has built it in XCode 4. XCode 4 has eliminated support for PowerPC architectures, but we would still like to support PowerPCs for some of our users.

I have followed this tutorial on SO, informing me how to restore ppc compatibility to XCode 4, however, this is for the GCC (4.2) compiler which throws a lot of warnings and some errors when compiling the code. The code is optimized around Apple's LLVM 3.0.

My questions:

Thank you!

Upvotes: 1

Views: 1358

Answers (1)

echristo
echristo

Reputation: 1727

Pretty much no, it's not possible. Apple LLVM 3.0 hasn't been tested or verified to work at all with PowerPC.

Upvotes: 2

Related Questions