简体   繁体   中英

Xcode How to configure Architectures in iOS SDK

what are the architectures and Valid Architectures add to iOS SDK to Support

  • 32 BIT (How to configure for 32BIt)

  • 64 BIT (Working Fine)

  • Both 32 BIT and 64 BIT (How to configure for 32BIt).

For 64 Bit I am using Architecture like this, its working fine

在此处输入图片说明

For 32 Bit I am using Architecture like this

In Xcode i am getting the error like this.

在此处输入图片说明

How can i achieve this. Thanks in advance

I Have fixed the Architecture issue for 32 Bit using Following Way:

在此处输入图片说明

for Architectures, i have used following criteria:

1) Architectures - used like $(ARCHS_STANDARD_32_BIT)

2) Valid Architectures - used Like armv7 only

nowdays, by deafult is 64 bit.

在此处输入图片说明

EDIT:

When you test your app in the simulator you are compiling it in your machine architecture that is probably x86_64. If what you want is to check that your app works on an arm 32 bit processor you will need to connect an iphone 5 or less and build your app for that device.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM