Skip to content
Snippets Groups Projects
Commit c98965eb authored by Matthew Waters's avatar Matthew Waters :koala:
Browse files

wavpack: fix a compilatioin error when cross compiling for android

symbol maps, aka version scripts are supported on android/linux
compilers.

Part-of: <!1191>
parent acdc2a45
No related branches found
No related tags found
Loading
......@@ -39,6 +39,8 @@ class Recipe(recipe.Recipe):
self.library_type = LibraryType.SHARED
else:
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'
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