We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd81a6f commit 210a1a2Copy full SHA for 210a1a2
1 file changed
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