I could not solve the problem, but I have a partial workaround.
There seems to be no armv7 fragment for many floating point armv7 . I assume they will be included in a later release (or final release) of Xcode 6.
Instead, there is a slice of armv7s : since I was debugging an iPhone5 that uses this last set of commands, I just needed to remove the architecture from the build settings.
- Go to the project settings, select your project.
- In the "Build Settings" section, find the "Architecture" entry.
- Edit it, delete
$(ARCHS_STANDARD) and replace it with armv7s . - As noted in jcr, you may need to switch the
Active Architecture Only parameter from YES to NO .
This will allow you to create and run. Unfortunately, I do not have an arm64 device for testing, but it is possible that this fragment is also included.
Pietro saccardi
source share