summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2018-03-04 20:46:46 +0100
committerMax Kellermann <max@musicpd.org>2018-03-04 20:46:46 +0100
commit8266ab5588ccca25b0b8b09e970736898159e73f (patch)
treed49efaf5a409d0227fc2f2b230ec4a3c6fb912cd /python
parentea552208fcb5d59386253233955b5ae5f7989562 (diff)
android/build.py: support the x86 ABI
First commit for issue #69
Diffstat (limited to 'python')
-rw-r--r--python/build/libs.py5
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(