Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Supporting iOS 6 and armv6

I am building my application for iOS6 and i want to support armv6 so i had added the armv6 in architecture and valid architecture. Now application is giving lot of errors when build on apple llvm 4.1 but it compiles on llvm gcc 4.2. And when i build an Adhoc app using llvm gcc 4.2 then it's not installing on iphone 3GS and ipod 3G.


It's possible as kenji has given a link in the accepted Answer

like image 311
Iqbal Khan Avatar asked Dec 09 '22 20:12

Iqbal Khan


1 Answers

Xcode 4.5 removed support for building armv6 binaries.

You can't just add armv6 to the build settings, because the support to build it isn't there.

Edited to add

Since it was requested in the comments - confirmation for this comes from the Xcode 4.5 Release Notes

enter image description here

like image 160
Abizern Avatar answered Dec 19 '22 20:12

Abizern