diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2016-04-06 11:46:56 +0300 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2016-04-06 11:46:56 +0300 |
commit | 67ca367daa7b289687e91c540806d6568d1d09dc (patch) | |
tree | 55baeb03bf009186e710ff9319bb219ee2260ddd /recipes/wavpack.recipe | |
parent | 019a15274b49ecfa3a94fd5d08eb869cba08483f (diff) |
wavpack: Disable assembly on iOS
Due to different symbol naming, it doesn't work there yet.
Diffstat (limited to 'recipes/wavpack.recipe')
-rw-r--r-- | recipes/wavpack.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/wavpack.recipe b/recipes/wavpack.recipe index 4b4a7259..6b228194 100644 --- a/recipes/wavpack.recipe +++ b/recipes/wavpack.recipe @@ -16,7 +16,7 @@ class Recipe(recipe.Recipe): def configure(self): shell.replace(os.path.join(self.build_dir, 'Makefile.am'), {'SUBDIRS = src include cli man': 'SUBDIRS = src include man'}) - if self.config.target_arch not in [Architecture.X86, Architecture.X86_64, Architecture.ARMv7, Architecture.ARMv7S]: + if self.config.target_arch not in [Architecture.X86, Architecture.X86_64, Architecture.ARMv7, Architecture.ARMv7S] or self.config.target_platform == Platform.IOS: self.configure_options += ' --disable-asm ' super(Recipe, self).configure() |