Changes between Initial Version and Version 3 of Ticket #1803


Ignore:
Timestamp:
Apr 9, 2015 4:57:10 AM (9 years ago)
Author:
riza
Comment:

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  
    11Starting from Android NDK 10 (released July 2014), it added 3 new ABIs, all 64-bit: arm64-v8a, x86_64, mips64. 
    22 
     3Currently the default target for android build is for armeabi, for other targets few changes need to be done: 
     41. The names of the end folders are the same as the ABI the library. 
     5{{{ 
     6e.g: for arm64-v8a, use lib/arm64-v8a 
     7}}} 
     82. For ndk-build, it is necessary to define APP_ABI in the Application.mk. 
     9{{{ 
     10e.g: APP_ABI := arm64-v8a 
     11}}} 
     12 
    313This ticket will check to make sure that PJSIP compiles fine for those new archs.