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 29e8e9a commit 1bbb83cCopy full SHA for 1bbb83c
pythonforandroid/recipes/libzmq/__init__.py
@@ -48,6 +48,13 @@ def build_arch(self, arch):
48
self.ctx.ndk_dir, self.ctx.toolchain_version, arch),
49
join(bootstrap_obj_dir, 'libgnustl_shared.so'))
50
51
+ # Copy libgnustl_shared.so
52
+ with current_directory(self.get_build_dir(arch.arch)):
53
+ sh.cp(
54
+ "{ctx.ndk_dir}/sources/cxx-stl/gnu-libstdc++/{ctx.toolchain_version}/libs/{arch.arch}/libgnustl_shared.so".format(ctx=self.ctx,arch=arch),
55
+ self.ctx.get_libs_dir(arch.arch)
56
+ )
57
+
58
def get_recipe_env(self, arch):
59
# XXX should stl be configuration for the toolchain itself?
60
env = super(LibZMQRecipe, self).get_recipe_env(arch)
0 commit comments