iOS开发 - 指令集 (pc \ iOS)

2020-06-06  本文已影响0人  只懂搬砖的z_bl

讲道理,这部分内容可以放在包大小优化处说明,但是包大小优化还没整理出来(太懒了)...所以单独先拎出来😂

目前,iOS的指令集分类如下:

根据上面的分类,得出以下结论:

  1. 模拟器32位处理器测试需要i386架构,
  2. 模拟器64位处理器测试需要x86_64架构,
  3. 真机32位处理器需要armv7,或者armv7s架构,
  4. 真机64位处理器需要arm64架构。

对应项目打包的时候,xcode有对指令集做如下选项:

  1. 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.

    该编译选项指定了工程将被编译成支持哪些指令集,支持指令集是通过编译生成对应的二进制数据包实现的,如果支持的指令集数目有多个,就会编译出包含多个指令集代码的数据包,造成最终编译的包很大。

    XCode中定义了一些变量,然而这些变量在不同的XCode版本下又有着不同的值。

    • $(ARCHS_STANDARD)

      这个为Xcode中Architecture的默认值,XCode5中,该值为armv7, armv7s,在Xcode 5.1时,强制加入了对arm64的编译,于是该值为armv7, armv7s, arm64。

    • $(ARCHS_STANDARD_32_BIT)

      XCode 5和5.1中都为armv7, armv7s,旧一点的版本中应该对应的就只有armv7。

    • $(ARCHS_STANDARD_INCLUDING_64_BIT)

      Xcode 5和5.1中都为armv7, armv7s, arm64
      (当然,以上的分类,那都是基于xcode5和5.1给出的,最新的,好像没有找到相关说明)

  2. 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.

    该编译项指定可能支持的指令集,该列表和Architectures列表的交集,将是Xcode最终生成二进制包所支持的指令集。

  3. Build Active Architecture Only

    官方文档说明:

    Boolean value. Specifies whether the product includes only object code for the native architecture.

    该编译项用于设置是否只编译当前使用的设备对应的arm指令集。

如何选择支持的指令集

如果你的软件对安装包大小非常敏感,你可以减少安装包中的指令集数据包,而且这能达到立竿见影的效果。

但需要具体到每个应用单独分析,因为并不是所有应用中引用的第三方框架都支持那么少的指令集的。

根据以上的知识点和结论,我们知道在ipa打包上架前,可以移除某些不再支持的指令集架构,可以有效的减少ipa包的大小

以下是文章的参考链接:

armv7、arm64、ValidArchitectures是什么东西,有啥区别_weixin_43883776的博客-CSDN博客_armv7arm64

Xcode的Architecture参数的意思_sakulafly的专栏-CSDN博客_archs_standardxcode10

Xcode的Architectures和ValidArchitectures的区别_高科的专栏-CSDN博客_xcodevalidarchitectures

armv7 armv7s arm64 - imKirin - 博客园

iOS 如何缩小打包项目ipa大小 - 溺水的小小鱼 - 博客园

上一篇下一篇

猜你喜欢

热点阅读