gpt4 book ai didi

ios - Xcode build设置中的 "Architectures"和 "Valid Architectures"有什么区别?

转载 作者:IT王子 更新时间:2023-10-29 07:28:39 56 4
gpt4 key购买 nike

它们的含义是什么,我可以将它们设置为不同的值吗?

最佳答案

架构是您想要构建的架构,有效的架构是您可以设想使用您的代码库构建的架构。

所以也许您只想为 armv7 构建二进制文件,但相同的源代码可以为 armv7 和 armv6 编译。所以 VALID_ARCHS = armv6 armv7 armv7s,但是您设置了 ARCHS = armv7s 因为这就是您实际上想要使用您的代码构建的所有内容。

或者,用苹果语:

ARCHS (Architectures)

Space-separated list of identifiers. Specifies the architectures (ABIs, processor models) to which the binary is targeted. When this build setting specifies more than one architecture, the generated binary may contain object code for each of the specified architectures.

和:

VALID_ARCHS (Valid Architectures)

Space-separated list of identifiers. Specifies the architectures for which the binary may be built. During the build, this list is intersected with the value of ARCHS build setting; the resulting list specifies the architectures the binary can run on. If the resulting architecture list is empty, the target generates no binary.

来源:Xcode Build Setting Reference

在实践中,您不用管 VALID_ARCHS 并且不必担心更改它,只需摆弄 ARCHS 即可设置您要构建的架构。通常,您将 Debug 版本设置为 NATIVE_ARCH,因为您只想为您将在其上测试/运行它的机器构建调试版本,而 Release 版本则适用于您的所有架构计划支持。

关于ios - Xcode build设置中的 "Architectures"和 "Valid Architectures"有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12701188/

56 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com