Skip to content

Commit 730d560

Browse files
committed
Add support for NDK r10
1 parent a1fbc82 commit 730d560

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

distribute.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,11 @@ function push_arm() {
192192
export TOOLCHAIN_PREFIX=arm-linux-androideabi
193193
export TOOLCHAIN_VERSION=4.4.3
194194
elif [ "X${ANDROIDNDKVER:0:2}" == "Xr9" ]; then
195-
export TOOLCHAIN_PREFIX=arm-linux-androideabi
196-
export TOOLCHAIN_VERSION=4.8
195+
export TOOLCHAIN_PREFIX=arm-linux-androideabi
196+
export TOOLCHAIN_VERSION=4.8
197+
elif [ "X${ANDROIDNDKVER:0:3}" == "Xr10" ]; then
198+
export TOOLCHAIN_PREFIX=arm-linux-androideabi
199+
export TOOLCHAIN_VERSION=4.9
197200
else
198201
echo "Error: Please report issue to enable support for newer ndk."
199202
exit 1

0 commit comments

Comments
 (0)