Skip to content

Commit dea72de

Browse files
committed
Fix OpenSSL recipe crashes on x86
1 parent 129cbfa commit dea72de

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pythonforandroid/recipes/openssl/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ def select_build_arch(self, arch):
3636
return 'android-armv7'
3737
if 'arm' in aname:
3838
return 'android'
39+
if 'x86' in aname:
40+
return 'android-x86'
3941
return 'linux-armv4'
4042

4143
def build_arch(self, arch):

0 commit comments

Comments
 (0)