We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d65e3c6 commit 85d9d23Copy full SHA for 85d9d23
pythonforandroid/recipes/kiwisolver/__init__.py
@@ -3,17 +3,17 @@
3
4
class KiwiSolverRecipe(PyProjectRecipe):
5
site_packages_name = 'kiwisolver'
6
- version = '1.4.5'
+ version = '1.4.8'
7
url = 'git+https://github.com/nucleic/kiwi'
8
- depends = ['cppy']
+ hostpython_prerequisites = ['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
+ env["CFLAGS"] += flags
+ env["CPPFLAGS"] += flags
17
return env
18
19
0 commit comments