Tabz
Tabz

Reputation: 172

Xcode 12 beta valid architectures missing in build settings

Hi I'm using Xcode Version 12.0 beta 3 (12A8169g). Valid architectures in build settings is missing. Does anybody know how to add valid architectures in XCode 12.0 version. XCode is taking care of it or is it a beta version bug. enter image description here

Upvotes: 6

Views: 12430

Answers (3)

juhan_h
juhan_h

Reputation: 4011

From Xcode 12 release notes:

The Build Settings editor no longer includes the Valid Architectures build setting (VALID_ARCHS), and its use is discouraged. Instead, there is a new Excluded Architectures build setting (EXCLUDED_ARCHS). If a project includes VALID_ARCHS, the setting is displayed in the User-Defined section of the Build Settings editor.

Upvotes: 14

user16780334
user16780334

Reputation: 502

https://developer.apple.com/documentation/xcode-release-notes/xcode-12-release-notes .

Deprecations
The Build Settings editor no longer includes the Valid Architectures build setting (VALID_ARCHS), and its use is discouraged. Instead, there is a new Excluded Architectures build setting (EXCLUDED_ARCHS). If a project includes VALID_ARCHS, the setting is displayed in the User-Defined section of the Build Settings editor. (15145028)
The legacy build system is deprecated, and will be removed in a future release. (62742902)

Upvotes: 1

Min
Min

Reputation: 11

I changed the value for this setting to true instead and it worked for me:

Build Active Architecture Only

Upvotes: 1

Related Questions