android/build.py: support the x86 ABI

First commit for issue 
This commit is contained in:
Max Kellermann
2018-03-04 20:46:46 +01:00
parent ea552208fc
commit 8266ab5588
2 changed files with 15 additions and 1 deletions
android
python/build

@ -23,6 +23,11 @@ libvorbis = AutotoolsProject(
[
'--disable-shared', '--enable-static',
],
edits={
# this option is not understood by clang
'configure': lambda data: data.replace('-mno-ieee-fp', ' '),
}
)
opus = AutotoolsProject(