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 d31942f commit 19e1e27Copy full SHA for 19e1e27
pythonforandroid/recipes/pandas/__init__.py
@@ -13,6 +13,7 @@ class PandasRecipe(CppCompiledComponentsPythonRecipe):
13
patches = ['fix_numpy_includes.patch']
14
15
call_hostpython_via_targetpython = False
16
+ need_stl_shared = True
17
18
def get_recipe_env(self, arch):
19
env = super().get_recipe_env(arch)
@@ -27,7 +28,7 @@ def get_recipe_env(self, arch):
27
28
# "_ZTVSt12length_error" referenced by
29
# "/data/data/org.test.matplotlib_testapp/files/app/_python_bundle
30
# /site-packages/pandas/_libs/window/aggregations.so"...
- env['LDFLAGS'] += ' -landroid'
31
+ env['LDFLAGS'] += f' -landroid -l{self.stl_lib_name}'
32
return env
33
34
0 commit comments