We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b0eed1 commit ceed049Copy full SHA for ceed049
pythonforandroid/recipes/kiwisolver/__init__.py
@@ -8,5 +8,13 @@ class KiwiSolverRecipe(PyProjectRecipe):
8
depends = ['cppy']
9
need_stl_shared = True
10
11
+ # from https://github.com/kivy/python-for-android/issues/3115
12
+ def get_recipe_env(self, arch, **kwargs):
13
+ env = super().get_recipe_env(arch, **kwargs)
14
+ flags = " -I" + self.ctx.python_recipe.include_root(arch.arch)
15
+ env["CFLAGS"] = flags
16
+ env["CPPFLAGS"] = flags
17
+ return env
18
+
19
20
recipe = KiwiSolverRecipe()
0 commit comments