diff options
author | Ryan Pavlik <ryan.pavlik@collabora.com> | 2023-10-03 10:37:10 -0500 |
---|---|---|
committer | Ryan Pavlik <ryan.pavlik@collabora.com> | 2023-10-05 11:29:04 -0500 |
commit | 74b9ebcea7c4f3d457f610b7e6bc5eb6d80f5094 (patch) | |
tree | 2d134f3cb6725fcd383645693e5fbb6db939b4e7 /recipes | |
parent | 4a9f26a761ac725ec9e740e5bb1d763b992b41e3 (diff) |
wavpack: Really fix that compilation error on Android.
The change in
c98965ebc56c9209075d63057cb8b0002122abf7
was seemingly not enough in some systems.
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1277>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/wavpack.recipe | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes/wavpack.recipe b/recipes/wavpack.recipe index 72ecd312..e6a01d06 100644 --- a/recipes/wavpack.recipe +++ b/recipes/wavpack.recipe @@ -41,6 +41,8 @@ class Recipe(recipe.Recipe): self.library_type = LibraryType.STATIC if self.config.cross_compiling() and self.config.target_platform not in [Platform.WINDOWS, Platform.DARWIN]: self.configure_options += ' -DCOMPILER_SUPPORTS_SYMBOL_MAPS_EXITCODE=0' + if self.config.target_platform == Platform.ANDROID: + self.configure_options += ' -DCOMPILER_SUPPORTS_SYMBOL_MAPS=TRUE' async def extract(self): await super().extract() |