1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| # Application.mk # 可用通过adb shell进入手机后,cat /proc/cpuinfo查看cpu架构, # walleye:/system/bin # Processor : AArch64 Processor rev 4 (aarch64) # processor : 0 # BogoMIPS : 38.00 # Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 # CPU implementer : 0x51 # CPU architecture: 8 -------表示armv8a # CPU variant : 0xa # CPU part : 0x801 # CPU revision : 4 #
# BogoMIPS : 38.00 # Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 # CPU implementer : 0x51 # CPU architecture: 8 # CPU variant : 0xa # CPU part : 0x801 # CPU revision : 4
APP_ABI :=arm64-v8a
|