We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 16f1c26 + 210a1a2 commit 929d727Copy full SHA for 929d727
pythonforandroid/recipes/pymunk/__init__.py
@@ -10,7 +10,8 @@ class PymunkRecipe(CompiledComponentsPythonRecipe):
10
11
def get_recipe_env(self, arch):
12
env = super().get_recipe_env(arch)
13
- env["LDFLAGS"] += " -llog"
+ env["LDFLAGS"] += " -llog" # Used by Chipmunk cpMessage
14
+ env["LDFLAGS"] += " -lm" # For older versions of Android
15
return env
16
17
0 commit comments