Reputation: 13
When I use xcode6.3
and base SDK with IOS8.3 and build my project(old project), then the issue appeared :
No architectures to compile for (ARCHS=armv7,armv7s, VALID_ARCHS=armv7 armv7s).
Someone can help me? Thanks!
Upvotes: 1
Views: 1308
Reputation: 4906
Uhm maybe you are using some library that doesn't support armv7s architecture.
Try to remove armv7s from your project settings.
Upvotes: 1
Reputation: 1178
Please add below line in because architecture arm64 is missing. Project-> Target -> Architectures -> Architectures. To add basic architectures(armv7, arm64) in your project.
$(ARCHS_STANDARD)
Upvotes: 1