#1803 closed task (fixed)
Add support for Android 64 bit compilation
Reported by: | ming | Owned by: | bennylp |
---|---|---|---|
Priority: | normal | Milestone: | release-2.4 |
Component: | common | Version: | trunk |
Keywords: | Cc: | ||
Backport to 1.x milestone: | Backported: | no |
Description (last modified by nanang)
Starting from Android NDK 10 (released July 2014), it added 3 new ABIs, all 64-bit: arm64-v8a, x86_64, mips64.
Currently the default target for android build is for armeabi, for other targets few changes need to be done:
- The names of the end folders are the same as the ABI of the library, please check here for more info.
e.g: for arm64-v8a, use libs/arm64-v8a
- For ndk-build, it is necessary to define APP_ABI in the Application.mk.
e.g: APP_ABI := arm64-v8a
This ticket will check to make sure that PJSIP compiles fine for those new archs.
Change History (5)
comment:1 Changed 10 years ago by ming
comment:2 Changed 10 years ago by riza
In 5056:
comment:3 Changed 10 years ago by riza
- Description modified (diff)
- Resolution set to fixed
- Status changed from new to closed
comment:4 Changed 10 years ago by riza
- Description modified (diff)
comment:5 Changed 9 years ago by nanang
- Description modified (diff)
Note: See
TracTickets for help on using
tickets.
In 4960: