Changes between Version 4 and Version 5 of Ticket #1803
- Timestamp:
- Aug 3, 2015 8:49:19 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1803 – Description
v4 v5 1 Starting from Android NDK 10 (released July 2014), it added 3 new ABIs, all 64-bit: arm64-v8a, x86_64, mips64.1 Starting from Android NDK 10 (released July 2014), it added 3 new ABIs, all 64-bit: {{{arm64-v8a, x86_64, mips64}}}. 2 2 3 Currently the default target for android build is for armeabi, for other targets few changes need to be done:4 1. The names of the end folders are the same as the ABI the library.3 Currently the default target for android build is for {{{armeabi}}}, for other targets few changes need to be done: 4 1. The names of the end folders are the same as the ABI of the library, please check [https://developer.android.com/ndk/guides/abis.html#am here] for more info. 5 5 {{{ 6 6 e.g: for arm64-v8a, use libs/arm64-v8a 7 7 }}} 8 2. For ndk-build, it is necessary to define APP_ABI in the Application.mk.8 2. For {{{ndk-build}}}, it is necessary to define {{{APP_ABI}}} in the {{{Application.mk}}}. 9 9 {{{ 10 10 e.g: APP_ABI := arm64-v8a