From f1256ac6672e30a105cfae213050f065da3bc9c5 Mon Sep 17 00:00:00 2001 From: Eduardo Menges Mattje Date: Tue, 6 Aug 2024 08:08:46 -0300 Subject: [PATCH] Added suspport for NDK 27 --- build-android.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-android.sh b/build-android.sh index edf723e34..bd5a750a4 100755 --- a/build-android.sh +++ b/build-android.sh @@ -413,7 +413,7 @@ case "$NDK_RN" in TOOLSET=clang CONFIG_VARIANT=ndk19 ;; - "22.1"|"23.0"|"23.1"|"25.0"|"25.1"|"25.2"|"26.0"|"26.1"|"26.2"|"26.3") + "22.1"|"23.0"|"23.1"|"25.0"|"25.1"|"25.2"|"26.0"|"26.1"|"26.2"|"26.3"|"27.0") TOOLCHAIN=${TOOLCHAIN:-llvm} CXXPATH=$AndroidNDKRoot/toolchains/${TOOLCHAIN}/prebuilt/${PlatformOS}-x86_64/bin/clang++ TOOLSET=clang @@ -434,7 +434,7 @@ if [ -z "${ARCHLIST}" ]; then case "$NDK_RN" in # NDK 17+: Support for ARMv5 (armeabi), MIPS, and MIPS64 has been removed. - "17.1"|"17.2"|"18.0"|"18.1"|"19.0"|"19.1"|"19.2"|"20.0"|"20.1"|"21.0"|"21.1"|"21.2"|"21.3"|"21.4"|"22.1"|"23.0"|"23.1"|"25.0"|"25.1"|"25.2"|"26.0"|"26.1"|"26.2"|"26.3") + "17.1"|"17.2"|"18.0"|"18.1"|"19.0"|"19.1"|"19.2"|"20.0"|"20.1"|"21.0"|"21.1"|"21.2"|"21.3"|"21.4"|"22.1"|"23.0"|"23.1"|"25.0"|"25.1"|"25.2"|"26.0"|"26.1"|"26.2"|"26.3"|"27.0") ARCHLIST="arm64-v8a armeabi-v7a x86 x86_64" ;; *)