Skip to content
Snippets Groups Projects
Commit 74b9ebce authored by Rylie Pavlik's avatar Rylie Pavlik :woman:
Browse files

wavpack: Really fix that compilation error on Android.

The change in
c98965eb
was seemingly not enough in some systems.

Part-of: <!1277>
parent 4a9f26a7
No related branches found
No related tags found
Loading
Checking pipeline status
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment