Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I have a brand new app I created last night for iOS6, using XCode 4.5. I can properly develop on my iPhone 4 with iOS6.

Today I got my new iPhone 5 with iOS6 and, after updating the certificates with the new device UUID, I tried to run my app on it and got this error:

XCode cannot run using the selected device. Choose a destination with a supported architecture in order to run on this device.

I've enabled the device for development. Both armv7 and armv7s are on the settings.

I have included the sources from the Facebook 3.0 SDK and the linker flag '-lsqlite3.0'. I'm guessing the issue has to be related, but cannot figure what is wrong.

Any ideas how to solve it?

PS: The issue happens too when running the app on the simulator. No idea what changed on my project or XCode between last night and today, other than I have a new device and new certificates.

The selected destination does not support the architecture for which the selected software is built. Switch to a destination that supports that architecture in order to run the selected software.

share|improve this question
Don't add a compiler flag directly. Try adding the sqlite library the same way you add frameworks. All the dynamic libraries are there and the build system will then generate the correct linkages (LP64 for the simulator, armv7s for the A6 and armv7 for the A5) – Jason Coco Sep 22 '12 at 4:54

7 Answers

You need to add armv7s to your valid architectures under your Target's Build Settings.

Changing Valid Architectures

share|improve this answer
I have those settings in there. Weird. I'm thinking it must have to do something with the sources of the Facebook 3.0 SDK and the linker flag -lsqlite3.0. I just updated the post with all this info. Thanks! – Eneko Alonso Sep 22 '12 at 4:42
In my case, the 'valid architectures' did not create trouble even though they were i386, armv6, armv7. But the architectures under 'Additional SDKs' needed to be changed to 'Standard(armv7,armv7s)'. Thanks for the suggestion. – utsabiem Dec 18 '12 at 9:37

I have solve the problem using the below steps.

  1. Close the Xcode
  2. Delete the application from device
  3. Restart the device
  4. then re-run the application

it working fine..

share|improve this answer

You included src/Framework/Resources/Info.plist when added Facebook SDK files to your project. Just remove it from your project and everything will work again. Guaranteed! :)

share|improve this answer

One of my 3rd party libraries couldn't run on armv7s so I removed that option. I also removed armv6 and kept armv7 as the only option. It built and ran on the phone with only armv7.

share|improve this answer

So basically I created a new project, copied all the sources and everything seems to work fine. At least the app runs.

I am not sure which setting was causing the problem.

share|improve this answer

I had an issue with an out of data library that was built for iOS 4.x and I was building a new app for iOS 6 with iPhone 5 support. I received this error and the only way I resolved it was to make armv7 the only architecture and valid architecture listed in my project and target build settings.

share|improve this answer

I have solve the problem using the below steps.

Close the Xcode Delete the application from device Restart the device then re-run the application it working fine..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.