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.
c++
sdl3
1 parent 2ebea90 commit 331e4e4Copy full SHA for 331e4e4
pythonforandroid/recipes/kivy/__init__.py
@@ -34,6 +34,13 @@ class KivyRecipe(PyProjectRecipe):
34
# WARNING: Remove this patch when a new Kivy version is released.
35
patches = [("sdl-gl-swapwindow-nogil.patch", is_kivy_affected_by_deadlock_issue), "use_cython.patch"]
36
37
+ @property
38
+ def need_stl_shared(self):
39
+ if "sdl3" in self.ctx.recipe_build_order:
40
+ return True
41
+ else:
42
+ return False
43
+
44
def get_recipe_env(self, arch, **kwargs):
45
env = super().get_recipe_env(arch, **kwargs)
46
0 commit comments