Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.

Commit e471673

Browse files
committed
don't install multiple arm android toolchains
We were using /android/ndk-arm-9 in the buildbot config, but using /android/ndk-arm in the Dockerfile to set up PATH. One ARM toolchain is enough.
1 parent 95b97e6 commit e471673

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

master/master.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ class ConfigCommand(object):
861861

862862
# Set up the path to the android NDK
863863
if testing_android:
864-
s += " --android-cross-path=/android/ndk-arm-9"
864+
s += " --android-cross-path=/android/ndk-arm"
865865
s += " --disable-docs"
866866

867867
if "release-channel" in props:

slaves/android/install-ndk.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@ chmod +x android-ndk-r10e-linux-x86_64.bin
1414
bash android-ndk-r10e/build/tools/make-standalone-toolchain.sh \
1515
--platform=android-9 \
1616
--toolchain=arm-linux-androideabi-4.8 \
17-
--install-dir=/android/ndk-arm-9 \
18-
--ndk-dir=/android/android-ndk-r10e \
19-
--arch=arm
20-
bash android-ndk-r10e/build/tools/make-standalone-toolchain.sh \
21-
--platform=android-21 \
22-
--toolchain=arm-linux-androideabi-4.8 \
2317
--install-dir=/android/ndk-arm \
2418
--ndk-dir=/android/android-ndk-r10e \
2519
--arch=arm

0 commit comments

Comments
 (0)