user996142
user996142

Reputation: 2883

How does my app work in iOS simulator if architecture is set to arm?

My build settings has "architecture" option set set several arm versions. That means after compilation and linking I should get fat binary for several ARMs.

But how then it works in my iOS simulator which is x86 based?

Upvotes: 0

Views: 1021

Answers (1)

Claus Jørgensen
Claus Jørgensen

Reputation: 26345

Xcode will always build your app for x86_64 when you change the target to be the simulator, your choice of VALID_ARCHITECTURE have no impact on this.

Upvotes: 3

Related Questions