Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No architectures to compile for (ARCHS=, VALID_ARCHS=armv7k) Xcode 7 beta 3

My app have a watch kit support.

Previously, with Xcode 6.4 my app was running properly.

After updating with Xcode 7 beta 3 I am getting this error -

No architectures to compile for (ARCHS=, VALID_ARCHS=armv7k).

I am not sure in which target to make changes for this dependency.

Currently,

my watch kit extension architecture configuration is

enter image description here

and my watch kit app architecture configuration is

enter image description here

Any help would be appreciated.

like image 657
Nayan Avatar asked Jul 21 '15 06:07

Nayan


1 Answers

I encounter the same problem on more recent Xcode Beta as well.

I able to compile now by adding i386 to Valid Architectures alongside armv7k. Probably because of 32 bit legacy library in my project. It also works just by itself (only using i386). Weird.

Not sure if there's any other further implications though.

i386 on build settings

like image 182
Ikmal Ezzani Avatar answered Oct 18 '22 11:10

Ikmal Ezzani