diff options
author | Max Kellermann <max@musicpd.org> | 2018-03-04 20:46:46 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-03-04 20:46:46 +0100 |
commit | 8266ab5588ccca25b0b8b09e970736898159e73f (patch) | |
tree | d49efaf5a409d0227fc2f2b230ec4a3c6fb912cd /python/build/libs.py | |
parent | ea552208fcb5d59386253233955b5ae5f7989562 (diff) |
android/build.py: support the x86 ABI
First commit for issue #69
Diffstat (limited to 'python/build/libs.py')
-rw-r--r-- | python/build/libs.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/build/libs.py b/python/build/libs.py index 4cbab63ee..18b4cbbaf 100644 --- a/python/build/libs.py +++ b/python/build/libs.py @@ -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( |