-
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
Problems with distibute.sh #175
Comments
Looks like this was fixed sometime in the last few months, closing. |
What was the fix for this issue? I am having the same problem |
If you have the same problem with python-for-android master, please create a new issue giving the full details. This issue is ancient and doesn't relate to modern p4a. |
It was a similar issue for a completely different project. I just want to know how it was fixed because it seemed relevant to the issue I was having with cython. I am very new to cython so I dont yet know how to resolve types that arent builtins
…Sent from my iPhone
On Feb 2, 2019, at 3:53 PM, Alexander Taylor ***@***.***> wrote:
If you have the same problem with python-for-android master, please create a new issue giving the full details. This issue is ancient and doesn't relate to modern p4a.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I got error when command ./distribute.sh -m "kivy" was used:
error Do not use this file, it is the result of a failed Cython compilation.
^
error: command 'ccache' failed with exit status 1
Error compiling Cython file:
...
def get(self):
w,h = self._width, self._height
self.bind()
data = py_glReadPixels(0, 0, w, h, GL_RGBA, GL_UNSIGNED_BYTE)
self.release()
return str(buffer(data))
^
kivy/graphics/fbo.pyx:391:29: undeclared name not builtin: buffer
I'm using cython 0.19.2.
The text was updated successfully, but these errors were encountered: