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

Commit e5ac28a

Browse files
committed
Build and release i686+aarch64 android binaries
1 parent 1f41140 commit e5ac28a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

master/master.cfg

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,9 @@ 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-18"
864+
s += " --arm-linux-androideabi-ndk=/android/ndk-arm-18"
865+
s += " --i686-linux-android-ndk=/android/ndk-x86"
866+
s += " --aarch64-linux-android-ndk=/android/ndk-aarch64"
865867
s += " --disable-docs"
866868

867869
if "release-channel" in props:
@@ -1709,6 +1711,7 @@ for p in auto_platforms:
17091711
android = False
17101712
if "-x-android" in p:
17111713
targets.append('arm-linux-androideabi')
1714+
targets.append('i686-linux-android')
17121715
android = True
17131716
# Not checking android for now
17141717
chk = False
@@ -1766,6 +1769,7 @@ for p in dist_platforms:
17661769
# Not checking android for now
17671770
hosts = []
17681771
targets.append('arm-linux-androideabi')
1772+
targets.append('i686-linux-android')
17691773
elif "musl" in p:
17701774
musl = "/musl-x86_64"
17711775
hosts = []

0 commit comments

Comments
 (0)