Skip to content

Commit 09cadd5

Browse files
committed
Add --disable-neon-asm for armeabi-v7a
1 parent 712b100 commit 09cadd5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pythonforandroid/recipes/libvpx/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ def build_arch(self, arch):
4646
'--disable-realtime-only',
4747
f'--prefix={realpath(".")}',
4848
]
49+
50+
if arch.arch == 'armeabi-v7a':
51+
flags.append('--disable-neon-asm')
52+
4953
configure = sh.Command('./configure')
5054
shprint(configure, *flags, _env=env)
5155
shprint(sh.make, '-j', str(cpu_count()), _env=env)

0 commit comments

Comments
 (0)