We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee9c61c commit 84b01f0Copy full SHA for 84b01f0
pythonforandroid/recipes/cryptography/__init__.py
@@ -14,7 +14,8 @@ def get_recipe_env(self, arch):
14
15
openssl_recipe = Recipe.get_recipe('openssl', self.ctx)
16
env['CFLAGS'] += openssl_recipe.include_flags(arch)
17
- env['LDFLAGS'] += openssl_recipe.link_flags(arch)
+ env['LDFLAGS'] += openssl_recipe.link_dirs_flags(arch)
18
+ env['LIBS'] = openssl_recipe.link_libs_flags()
19
20
return env
21
0 commit comments