diff options
Diffstat (limited to 'python')
-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( |