XCode Build Settings 详解

一、Architectures&Assets&Build Locations

1,Architectures

Additional SDKs

在编译的时候需要附加的SDK

Architectures

支持的处理器架构

Base SDK

当前编译所用的SDK版本

Build Active Architecture Only

YES:只编译当前的architecture版本
NO:编译所有的架构

Excluded Architectures

去除哪些架构

Supported Platforms

支持的平台

2,Assets

3,Build Locations

附截图:


截屏2022-03-21 下午3.09.44.png

二、Build Options

Allow Multi-Platform Build

是否支持多平台编译,跟Supported Platforms有关联

Always Embed Swift Standard Libraries

一般用于oc和swift混编的时候,最好设置为NO
YES:始终在目标产品中嵌入Swift标准库,即使目标不包含任何Swift代码
NO:嵌入不嵌入Swift标准库取决于构建系统是否需要它们

截屏2022-03-26 下午6.42.09.png

你可能感兴趣的:(XCode Build Settings 详解)