diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2019-08-07 12:06:25 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2019-08-08 15:59:29 +0200 |
commit | a7f6338875931d8afff55cb39ead8f6600af04cb (patch) | |
tree | 0678222d12a0ddc8b328d758c3a76395f4d944af /bridges | |
parent | bef93028584ab804d6daba4c4abcabfe6e58dc0f (diff) |
android: support NDK 19 and above (20 as of this commit)
support for targeting API 14 and 15 was removed in NDK 18, so set
minimum version to 16
mips support was removed in NDK 17
Clang now takes care about correct linking with libc++ shared or
static, so don't manually specify them anymore.
Same with __ANDROID_API_LEVEL__ define and the sysroot / isystem
handling, that is all covered by a single -target <triple><version>
simplifying things quite a bit.
also align ownloud sdk values with main build.gradle
Change-Id: Ib3ae4484e52214677e826270b731ecf7c5c15445
Reviewed-on: https://gerrit.libreoffice.org/77104
Reviewed-by: Jan Holesovsky <kendy@collabora.com>
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/Library_cpp_uno.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bridges/Library_cpp_uno.mk b/bridges/Library_cpp_uno.mk index eded406d3f35..f8efb498a4b1 100644 --- a/bridges/Library_cpp_uno.mk +++ b/bridges/Library_cpp_uno.mk @@ -88,7 +88,7 @@ endif else ifeq ($(CPUNAME),GODSON) -ifneq ($(filter ANDROID LINUX,$(OS)),) +ifneq ($(filter LINUX,$(OS)),) bridges_SELECTED_BRIDGE := gcc3_linux_mips bridge_noopt_objects := cpp2uno uno2cpp bridge_exception_objects := except @@ -96,7 +96,7 @@ endif else ifeq ($(CPUNAME),GODSON64) -ifneq ($(filter ANDROID LINUX,$(OS)),) +ifneq ($(filter LINUX,$(OS)),) bridges_SELECTED_BRIDGE := gcc3_linux_mips64 bridge_asm_objects := call bridge_noopt_objects := cpp2uno uno2cpp |