zoukankan      html  css  js  c++  java
  • xcode armv6 armv7 armv7s arm64

    眼下ios的指令集有下面几种:

    • armv6
      • iPhone
      • iPhone2
      • iPhone3G
      • 第一代和第二代iPod Touch
    • armv7
      • iPhone4
      • iPhone4S
    • armv7s
      • iPhone5
      • iPhone5C
    • arm64
      • iPhone5S

     机器对指令集的支持是向下兼容的,因此armv7的指令集是能够执行在iphone5S的,仅仅是效率没那么高而已~

    ================================================

    Architecture : 指你想支持的指令集。

    Valid architectures : 指即将编译的指令集。

    Build Active Architecture Only : 仅仅是否仅仅编译当前适用的指令集。

    ================================================

     如今是2014年初,事实上4和4S的用户还是蛮多的,而iphone3之类的机器差点儿没有了,所以我们的指令集最低必须基于armv7.

    因此,Architecture的值选择:armv7 armv7s arm64

    PS:选arm64时须要最低支持5.1.1:

    Convert Your App to a 64-Bit Binary After Updating It for iOS 7

    Xcode 5.0.1 can build your app with both 32-bit and 64-bit binaries included. This combined binary requires a minimum deployment target of iOS 5.1.1 or later. The 64-bit binary runs only on 64-bit devices running iOS 7.0.3 and later. If you have an existing app, you should first update your app for iOS 7 and then port it to run on 64-bit processors. By updating it first for iOS 7, you can remove deprecated code paths and use modern practices. If you’re creating a new app, target iOS 7 and compile 32-bit and 64-bit versions of your app.

    The architecture for 64-bit apps on iOS is almost identical to the architecture for OS X apps, making it easy to create a common code base that runs in both operating systems. Converting a Cocoa Touch app to 64-bit follows a similar transition process as the one for Cocoa apps on OS X. Pointers and some common C types change from 32 bits to 64 bits. Code that relies on the NSInteger and CGFloat types needs to be carefully examined.

    Start by building the app for the 64-bit runtime, fixing any warnings that occur as well as searching your code for specific 64-bit issues. For example:

    • Make sure all function calls have a proper prototype.

    • Avoid truncating 64-bit values by accidentally assigning them to a 32-bit data type.

    • Ensure that calculations are performed correctly in the 64-bit version of your app.

    • Create data structures whose layouts are identical in the 32-bit and 64-bit versions of your app (such as when you write a data file to iCloud).

    1,假设想自己的app在各个机器都可以最高效率的执行,则须要将Build Active Architecture Only改为NO,Valid architectures选择相应的指令集:armv7 armv7s arm64。这个会为各个指令集编译相应的代码,因此最后的 ipa体积基本翻了3倍,Release版本号必须NO。

    2,假设想让app体积保持最小,则现阶段应该选择Valid architectures为armv7,这样Build Active Architecture Only选YES或NO就无所谓了

  • 相关阅读:
    iOS 疑难杂症 — — 复制 Storyborad 莫名崩溃
    【Swift 2.1】共享文件操作小结(iOS 8 +)
    【Swift】 应用内显示 AppStore 某个应用的详情
    【Swift】iOS开发笔记(一)
    【Swift 2.0】实现简单弹幕功能
    站长名站
    Future home of something quite cool.
    大神们都在用的两个国外的免费离线下载:Rain& LoadBT
    Amazon Publisher Studio让产品推广更简单
    人脉是设计出来的,进入高端人脉圈的方法
  • 原文地址:https://www.cnblogs.com/hrhguanli/p/3916500.html
Copyright © 2011-2022 走看看