Pis.Y.Chen
Pis.Y.Chen

Reputation: 13

No architectures to compile for (ARCHS=armv7,armv7s, VALID_ARCHS=armv7 armv7s)

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

Answers (2)

Massimo Polimeni
Massimo Polimeni

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

Ajay Gabani
Ajay Gabani

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

Related Questions