This repository was archived by the owner on Nov 21, 2018. It is now read-only.
File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -861,7 +861,7 @@ class ConfigCommand(object):
861
861
862
862
# Set up the path to the android NDK
863
863
if testing_android :
864
- s += " --android-cross-path=/android/ndk-arm-18 "
864
+ s += " --android-cross-path=/android/ndk-arm-9 "
865
865
s += " --disable-docs"
866
866
867
867
if "release-channel" in props :
Original file line number Diff line number Diff line change @@ -8,10 +8,13 @@ set -ex
8
8
curl -O http://dl.google.com/android/ndk/android-ndk-r10e-linux-x86_64.bin
9
9
chmod +x android-ndk-r10e-linux-x86_64.bin
10
10
./android-ndk-r10e-linux-x86_64.bin > /dev/null
11
+ # We use android-9 on arm and x86 for maximum compatibility with systems
12
+ # like Firefox. We use 21 for aarch64 and x86-64 because that is the
13
+ # earliest API level at which they are supported.
11
14
bash android-ndk-r10e/build/tools/make-standalone-toolchain.sh \
12
- --platform=android-18 \
15
+ --platform=android-9 \
13
16
--toolchain=arm-linux-androideabi-4.8 \
14
- --install-dir=/android/ndk-arm-18 \
17
+ --install-dir=/android/ndk-arm-9 \
15
18
--ndk-dir=/android/android-ndk-r10e \
16
19
--arch=arm
17
20
bash android-ndk-r10e/build/tools/make-standalone-toolchain.sh \
@@ -27,7 +30,7 @@ bash android-ndk-r10e/build/tools/make-standalone-toolchain.sh \
27
30
--ndk-dir=/android/android-ndk-r10e \
28
31
--arch=arm64
29
32
bash android-ndk-r10e/build/tools/make-standalone-toolchain.sh \
30
- --platform=android-21 \
33
+ --platform=android-9 \
31
34
--toolchain=x86-4.9 \
32
35
--install-dir=/android/ndk-x86 \
33
36
--ndk-dir=/android/android-ndk-r10e \
You can’t perform that action at this time.
0 commit comments