From 32bff74f85ad501869472edc9b4c245466c126fd Mon Sep 17 00:00:00 2001 From: Ralph-Gordon Paul Date: Mon, 24 Sep 2018 16:18:10 +0200 Subject: [PATCH] Add Support for NDK r17c --- build-android.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-android.sh b/build-android.sh index c3db7b1f4..6e50feb8e 100755 --- a/build-android.sh +++ b/build-android.sh @@ -294,7 +294,7 @@ case "$NDK_RN" in CXXPATH=$AndroidNDKRoot/toolchains/${TOOLCHAIN}/prebuilt/${PlatformOS}-x86_64/bin/arm-linux-androideabi-g++ TOOLSET=gcc-androidR8e ;; - "16.0"|"16.1"|"17.1"|"18.0") + "16.0"|"16.1"|"17.1"|"17.2"|"18.0") TOOLCHAIN=${TOOLCHAIN:-llvm} CXXPATH=$AndroidNDKRoot/toolchains/${TOOLCHAIN}/prebuilt/${PlatformOS}-x86_64/bin/clang++ TOOLSET=clang @@ -314,7 +314,7 @@ if [ -z "${ARCHLIST}" ]; then case "$NDK_RN" in # NDK 17+: Support for ARMv5 (armeabi), MIPS, and MIPS64 has been removed. - "17.1"|"18.0") + "17.1"|"17.2"|"18.0") ARCHLIST="arm64-v8a armeabi-v7a x86 x86_64" ;; *)