We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If I try to run, for example, distribute.sh -m "kivy pil", it will fail to compile with this error message:
distribute.sh -m "kivy pil"
android/python-for-android/src/jni/../jni/application/src//start.c:2:20: fatal error: Python.h: No such file or directory
However, if I run this, distribute.sh -m "kivy", and then run distribute.sh -m "kivy pil", then everything will compile just fine.
distribute.sh -m "kivy"
The text was updated successfully, but these errors were encountered:
Looks like a dependency problem.. The script is building SDL, while Python has not been built..
https://gist.github.com/7720168fe7b973976004
Sorry, something went wrong.
Put the Kivy module at the end. You have to put the modules like kivy after modules it depends on like pil.
No branches or pull requests
If I try to run, for example,
distribute.sh -m "kivy pil"
, it will fail to compile with this error message:However, if I run this,
distribute.sh -m "kivy"
, and then rundistribute.sh -m "kivy pil"
, then everything will compile just fine.The text was updated successfully, but these errors were encountered: