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
p4a.branch = develop
Compiling ZMQ recipe fails because cython is called in an incompatible way.
/home/rambo/.virtualenvs/py4a_37/bin/python3 -m Cython.Build.Cythonize --help
has different command line options from
/home/rambo/.virtualenvs/py4a_37/bin/cython --help
This (at least based on the recipe trying to pass -I options) is the correct script, unfortunately the Cython.Compiler.Main module cannot be called as a script (lack the if __name__ == '__main__' check so just changing the module in https://github.com/kivy/python-for-android/blob/develop/pythonforandroid/recipe.py#L1095 is not going to solve this.
Cython.Compiler.Main
if __name__ == '__main__'
Using p4a directly
Command:
p4a apk --private `pwd` --package=fi.advian.hellokv --use-setup-py --name "Hello kivy" --version 0.1 --bootstrap=sdl2 --requirements=python3,kivy --ndk-api=21 --ndk-dir=$HOME/.buildozer/android/platform/android-ndk-r19c --sdk-dir=$HOME/.buildozer/android/platform/android-sdk/
See https://gist.github.com/rambo/feab17c51a742b3d1f2239295298732b
The text was updated successfully, but these errors were encountered:
Call cython via the setuptools entrypoint, refs kivy#2311
d890243
0438dd0
6f42ef1
690dd18
Call cython via the setuptools entrypoint, fixes kivy#2311 (kivy#2312)
1c93df7
* Call cython via the setuptools entrypoint, refs kivy#2311 * Use the python_command way to invoke the cython cli entrypoint
819a1e6
No branches or pull requests
Checklist
p4a.branch = develop
)Versions
Description
Compiling ZMQ recipe fails because cython is called in an incompatible way.
has different command line options from
This (at least based on the recipe trying to pass -I options) is the correct script, unfortunately the
Cython.Compiler.Main
module cannot be called as a script (lack theif __name__ == '__main__'
check so just changing the module in https://github.com/kivy/python-for-android/blob/develop/pythonforandroid/recipe.py#L1095 is not going to solve this.buildozer.spec
Using p4a directly
Command:
Logs
See https://gist.github.com/rambo/feab17c51a742b3d1f2239295298732b
The text was updated successfully, but these errors were encountered: