Changes between Initial Version and Version 3 of Ticket #1803
- Timestamp:
- Apr 9, 2015 4:57:10 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1803
- Property Status changed from new to closed
- Property Resolution changed from to fixed
-
Ticket #1803 – Description
initial v3 1 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. 5 {{{ 6 e.g: for arm64-v8a, use lib/arm64-v8a 7 }}} 8 2. For ndk-build, it is necessary to define APP_ABI in the Application.mk. 9 {{{ 10 e.g: APP_ABI := arm64-v8a 11 }}} 12 3 13 This ticket will check to make sure that PJSIP compiles fine for those new archs.