-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix/clean-up LDSHARED #1360
Comments
By the way, similar issue: Your greenlet recipe pull request does that, mine does, I've seen yet another do it - maybe this should be handled centrally as well? I am pretty sure it could go in the same place in |
I added a pull request here: #1361 (still WIP, I'm building my app with it right now to see if things blow up) |
Even though #1361 is now merged, we still need to clean existing recipes to remove redundant |
Since kivy#1361 was merged, we can drop LDSHARED override.
…DSHARED Clean-up LDSHARED, fixes #1360
LDSHARED
doesn't seem to be set inPythonRecipe
leading to failing compilation in some scenarios.The compilation may be failing because p4a would then pick up the system linker rather than the cross-compiler one.
For this reasons some recipes added that change in their
get_recipe_env()
method, like below:As in last master commit 0dc7664 we have at least 17 of them:
In his PR JonasT tries to address it via
pythonforandroid/archs.py
, see https://github.com/kivy/python-for-android/pull/1357/files#diff-569e13021e33ced8b54385f55b49cbe6R115This probably requires investigation to know where is the proper place to put it and then the pull request fixing it should also clean recipes overriding it in their
get_recipe_env()
method.The text was updated successfully, but these errors were encountered: