Skip to content
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

Error compiling #541

Closed
Zerokami opened this issue Dec 21, 2015 · 7 comments
Closed

Error compiling #541

Zerokami opened this issue Dec 21, 2015 · 7 comments

Comments

@Zerokami
Copy link

I get the following errors when I compiling with buildozer.

arm-linux-androideabi-gcc: error: kivy/graphics/opengl.c: No such file or directory
arm-linux-androideabi-gcc: fatal error: no input files
compilation terminated.
 error: command 'arm-linux-androideabi-gcc' failed with exit status 1

Error compiling Cython file:
------------------------------------------------------------
...
        # Apply the existing arguments to our widget
        for key, value in kwargs.iteritems():
            if key in properties:
                setattr(self, key, value)

    def register_event_type(self, basestring event_type):
                                 ^
------------------------------------------------------------

kivy/_event.pyx:273:34: 'basestring' is not a type identifier

Error compiling Cython file:
------------------------------------------------------------
...

        # Add the event type to the stack
        if event_type not in self.__event_stack:
            self.__event_stack[event_type] = EventObservers(1, 0)

    def unregister_event_types(self, basestring event_type):
                                    ^
------------------------------------------------------------

kivy/_event.pyx:312:37: 'basestring' is not a type identifier

Error compiling Cython file:
------------------------------------------------------------
...
        '''Unregister an event type in the dispatcher.
        '''
        if event_type in self.__event_stack:
            del self.__event_stack[event_type]

    def is_event_type(self, basestring event_type):
                           ^
------------------------------------------------------------

kivy/_event.pyx:318:28: 'basestring' is not a type identifier

Error compiling Cython file:
------------------------------------------------------------
...
        .. versionadded:: 1.8.0

        '''
        return self.__event_stack.keys()

    def dispatch(self, basestring event_type, *largs, **kwargs):
                      ^
------------------------------------------------------------

kivy/_event.pyx:674:23: 'basestring' is not a type identifier

Error compiling Cython file:
------------------------------------------------------------
...
            return True

        handler = getattr(self, event_type)
        return handler(*largs, **kwargs)

    def dispatch_generic(self, basestring event_type, *largs, **kwargs):
                              ^
------------------------------------------------------------

kivy/_event.pyx:701:31: 'basestring' is not a type identifier

Error compiling Cython file:
------------------------------------------------------------
...
    def dispatch_generic(self, basestring event_type, *largs, **kwargs):
        if event_type in self.__event_stack:
            return self.dispatch(event_type, *largs, **kwargs)
        return self.dispatch_children(event_type, *largs, **kwargs)

    def dispatch_children(self, basestring event_type, *largs, **kwargs):
                               ^
------------------------------------------------------------

kivy/_event.pyx:706:32: 'basestring' is not a type identifier

Error compiling Cython file:
------------------------------------------------------------
...
        global cache_properties
        cdef dict cp = cache_properties
        cdef dict attrs_found
        cdef list attrs
        cdef Property attr
        cdef basestring k
            ^
------------------------------------------------------------

kivy/_event.pyx:176:13: 'basestring' is not a type identifier

Error compiling Cython file:
------------------------------------------------------------
...
        # self.register_event_type)

        # If not done yet, discover __events__ on all the baseclasses
        cdef dict ce = cache_events
        cdef list events
        cdef basestring event
            ^
------------------------------------------------------------

kivy/_event.pyx:214:13: 'basestring' is not a type identifier

Error compiling Cython file:
------------------------------------------------------------
...
        # then auto register
        for event in events:
            self.__event_stack[event] = EventObservers(1, 0)

    def __init__(self, **kwargs):
        cdef basestring func, name, key
            ^
------------------------------------------------------------

kivy/_event.pyx:245:13: 'basestring' is not a type identifier

Error compiling Cython file:
------------------------------------------------------------
...
    cdef int SDL_GetTextureBlendMode(SDL_Texture * texture, SDL_BlendMode *blendMode)
    cdef SDL_Surface * SDL_CreateRGBSurfaceFrom(void *pixels, int width, int height, int depth, int pitch, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
    cdef SDL_Surface* SDL_ConvertSurface(SDL_Surface* src, SDL_PixelFormat* fmt, Uint32 flags)
    cdef SDL_Surface* SDL_ConvertSurfaceFormat(SDL_Surface* src, Uint32
            pixel_format, Uint32 flags)
    cdef const char* SDL_GetPixelFormatName(Uint32 format)
                  ^
------------------------------------------------------------

kivy/core/clipboard/../../lib/sdl2.pxi:455:19: Syntax error in C variable declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef int SDL_GetTextureBlendMode(SDL_Texture * texture, SDL_BlendMode *blendMode)
    cdef SDL_Surface * SDL_CreateRGBSurfaceFrom(void *pixels, int width, int height, int depth, int pitch, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
    cdef SDL_Surface* SDL_ConvertSurface(SDL_Surface* src, SDL_PixelFormat* fmt, Uint32 flags)
    cdef SDL_Surface* SDL_ConvertSurfaceFormat(SDL_Surface* src, Uint32
            pixel_format, Uint32 flags)
    cdef const char* SDL_GetPixelFormatName(Uint32 format)
                  ^
------------------------------------------------------------

kivy/core/audio/../../../kivy/lib/sdl2.pxi:455:19: Syntax error in C variable declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef int SDL_GetTextureBlendMode(SDL_Texture * texture, SDL_BlendMode *blendMode)
    cdef SDL_Surface * SDL_CreateRGBSurfaceFrom(void *pixels, int width, int height, int depth, int pitch, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
    cdef SDL_Surface* SDL_ConvertSurface(SDL_Surface* src, SDL_PixelFormat* fmt, Uint32 flags)
    cdef SDL_Surface* SDL_ConvertSurfaceFormat(SDL_Surface* src, Uint32
            pixel_format, Uint32 flags)
    cdef const char* SDL_GetPixelFormatName(Uint32 format)
                  ^
------------------------------------------------------------

kivy/core/text/../../lib/sdl2.pxi:455:19: Syntax error in C variable declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef int SDL_GetTextureBlendMode(SDL_Texture * texture, SDL_BlendMode *blendMode)
    cdef SDL_Surface * SDL_CreateRGBSurfaceFrom(void *pixels, int width, int height, int depth, int pitch, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
    cdef SDL_Surface* SDL_ConvertSurface(SDL_Surface* src, SDL_PixelFormat* fmt, Uint32 flags)
    cdef SDL_Surface* SDL_ConvertSurfaceFormat(SDL_Surface* src, Uint32
            pixel_format, Uint32 flags)
    cdef const char* SDL_GetPixelFormatName(Uint32 format)
                  ^
------------------------------------------------------------

kivy/core/window/../../../kivy/lib/sdl2.pxi:455:19: Syntax error in C variable declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef int SDL_GetTextureBlendMode(SDL_Texture * texture, SDL_BlendMode *blendMode)
    cdef SDL_Surface * SDL_CreateRGBSurfaceFrom(void *pixels, int width, int height, int depth, int pitch, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
    cdef SDL_Surface* SDL_ConvertSurface(SDL_Surface* src, SDL_PixelFormat* fmt, Uint32 flags)
    cdef SDL_Surface* SDL_ConvertSurfaceFormat(SDL_Surface* src, Uint32
            pixel_format, Uint32 flags)
    cdef const char* SDL_GetPixelFormatName(Uint32 format)
                  ^
------------------------------------------------------------


 error: command 'arm-linux-androideabi-gcc' failed with exit status 1
# Command failed: ./distribute.sh -m "kivy openssl lxml" -d "apvehicle"
# 
# Buildozer failed to execute the last command
# The error might be hidden in the log above this error
# Please read the full log, and search for it before
# raising an issue with buildozer itself.
# In case of a bug report, please add a full log with log_level = 2
@inclement
Copy link
Member

What version of cython are you using?

@kived
Copy link
Contributor

kived commented Dec 21, 2015

basestring was added in Cython 0.20. This is the oldest supported version of Cython.

@inclement
Copy link
Member

Since that's probably the problem, I'll close this issue now. @Logmytech: please reopen it if using a new cython version doesn't fix it.

@Zerokami
Copy link
Author

Yes, I was using an old version of Cython. I'll try compiling again with the latest version.

@Zerokami
Copy link
Author

I still get the following error

rm-linux-androideabi-gcc: fatal error: no input files
compilation terminated.
 error: command 'arm-linux-androideabi-gcc' failed with exit status 1

Error compiling Cython file:
------------------------------------------------------------
...
    cpdef release(self)
    cpdef get_pixel_color(self, int wx, int wy)

    cdef void create_fbo(self)
    cdef void delete_fbo(self)
    cdef void apply(self)
                  ^
------------------------------------------------------------

kivy/graphics/fbo.pxd:27:19: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
    cdef void pop_states(self, list names) except *
    cdef void enter(self) except *
    cdef void leave(self) except *
    cdef void apply(self) except *
                  ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:123:19: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void stop(self):
        '''Stop using the shader.
        '''
        glUseProgram(0)

    cdef void set_uniform(self, str name, value):
        ^
------------------------------------------------------------

kivy/graphics/shader.pyx:233:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef dict uniform_locations
    cdef dict uniform_values

    cdef void use(self)
    cdef void stop(self)
    cdef void set_uniform(self, str name, value) except *
                        ^
------------------------------------------------------------

kivy/graphics/shader.pxd:29:25: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
        if name in self.uniform_values and self.uniform_values[name] == value:
            return
        self.uniform_values[name] = value
        self.upload_uniform(name, value)

    cdef void upload_uniform(self, str name, value):
        ^
------------------------------------------------------------

kivy/graphics/shader.pyx:239:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef dict uniform_values

    cdef void use(self)
    cdef void stop(self)
    cdef void set_uniform(self, str name, value) except *
    cdef void upload_uniform(self, str name, value) except *
                           ^
------------------------------------------------------------

kivy/graphics/shader.pxd:30:28: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
        cdef GLfloat mat[16]
        for x in xrange(16):
            mat[x] = <GLfloat>value.mat[x]
        glUniformMatrix4fv(loc, 1, False, mat)

    cdef int get_uniform_loc(self, str name):
        ^
------------------------------------------------------------

kivy/graphics/shader.pyx:424:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void use(self)
    cdef void stop(self)
    cdef void set_uniform(self, str name, value) except *
    cdef void upload_uniform(self, str name, value) except *
    cdef void upload_uniform_matrix(self, int loc, Matrix value)
    cdef int get_uniform_loc(self, str name) except *
                           ^
------------------------------------------------------------

kivy/graphics/shader.pxd:32:28: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
                glEnableVertexAttribArray(attr.index)

        # save for the next run.
        self._current_vertex_format = vertex_format

    cdef void build(self):
        ^
------------------------------------------------------------

kivy/graphics/shader.pyx:465:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void stop(self)
    cdef void set_uniform(self, str name, value) except *
    cdef void upload_uniform(self, str name, value) except *
    cdef void upload_uniform_matrix(self, int loc, Matrix value)
    cdef int get_uniform_loc(self, str name) except *
    cdef void build(self) except *
                  ^
------------------------------------------------------------

kivy/graphics/shader.pxd:33:19: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...

    cdef void build(self):
        self.build_vertex()
        self.build_fragment()

    cdef void build_vertex(self, int link=1):
        ^
------------------------------------------------------------

kivy/graphics/shader.pyx:469:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void set_uniform(self, str name, value) except *
    cdef void upload_uniform(self, str name, value) except *
    cdef void upload_uniform_matrix(self, int loc, Matrix value)
    cdef int get_uniform_loc(self, str name) except *
    cdef void build(self) except *
    cdef void build_vertex(self, int link=*) except *
                         ^
------------------------------------------------------------

kivy/graphics/shader.pxd:34:26: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
        if self.vertex_shader is not None:
            glAttachShader(self.program, self.vertex_shader.shader)
        if link:
            self.link_program()

    cdef void build_fragment(self, int link=1):
        ^
------------------------------------------------------------

kivy/graphics/shader.pyx:479:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void upload_uniform(self, str name, value) except *
    cdef void upload_uniform_matrix(self, int loc, Matrix value)
    cdef int get_uniform_loc(self, str name) except *
    cdef void build(self) except *
    cdef void build_vertex(self, int link=*) except *
    cdef void build_fragment(self, int link=*) except *
                           ^
------------------------------------------------------------

kivy/graphics/shader.pxd:35:28: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
        if self.fragment_shader is not None:
            glAttachShader(self.program, self.fragment_shader.shader)
        if link:
            self.link_program()

    cdef void link_program(self):
        ^
------------------------------------------------------------

kivy/graphics/shader.pyx:489:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void upload_uniform_matrix(self, int loc, Matrix value)
    cdef int get_uniform_loc(self, str name) except *
    cdef void build(self) except *
    cdef void build_vertex(self, int link=*) except *
    cdef void build_fragment(self, int link=*) except *
    cdef void link_program(self) except *
                         ^
------------------------------------------------------------

kivy/graphics/shader.pxd:36:26: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
    cpdef release(self)
    cpdef get_pixel_color(self, int wx, int wy)

    cdef void create_fbo(self)
    cdef void delete_fbo(self)
    cdef void apply(self)
                  ^
------------------------------------------------------------

kivy/graphics/fbo.pxd:27:19: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
    cdef void pop_states(self, list names) except *
    cdef void enter(self) except *
    cdef void leave(self) except *
    cdef void apply(self) except *
                  ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:123:19: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
    cpdef release(self)
    cpdef get_pixel_color(self, int wx, int wy)

    cdef void create_fbo(self)
    cdef void delete_fbo(self)
    cdef void apply(self)
                  ^
------------------------------------------------------------

kivy/graphics/fbo.pxd:27:19: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
    cdef void pop_states(self, list names) except *
    cdef void enter(self) except *
    cdef void leave(self) except *
    cdef void apply(self) except *
                  ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:123:19: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
        elif self._stencilbuffer_attached:
            glClear(GL_COLOR_BUFFER_BIT | GL_STENCIL_BUFFER_BIT)
        else:        if self.context_pop:
            context.pop_states(self.context_pop)

    cdef void set_state(self, str name, value):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:258:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef dict context_state
    cdef list context_push
    cdef list context_pop

    cdef RenderContext get_context(self)
    cdef void set_state(self, str name, value) except *
                      ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:61:23: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...

    cdef void set_state(self, str name, value):
        self.context_state[name] = value
        self.flag_update()

    cdef void push_state(self, str name):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:262:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef list context_push
    cdef list context_pop

    cdef RenderContext get_context(self)
    cdef void set_state(self, str name, value) except *
    cdef void push_state(self, str name) except *
                       ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:62:24: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...

    cdef void push_state(self, str name):
        self.context_push.append(name)
        self.flag_update()

    cdef void pop_state(self, str name):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:266:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef list context_pop

    cdef RenderContext get_context(self)
    cdef void set_state(self, str name, value) except *
    cdef void push_state(self, str name) except *
    cdef void pop_state(self, str name) except *
                      ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:63:23: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
        self._shader.set_uniform(name, value)

    cdef get_state(self, str name):
        return self.state_stacks[name][-1]

    cdef void set_states(self, dict states):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:789:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef int _use_parent_modelview

    cdef void set_texture(self, int index, Texture texture)
    cdef void set_state(self, str name, value, int apply_now=?)
    cdef get_state(self, str name)
    cdef void set_states(self, dict states) except *
                       ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:116:24: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void set_states(self, dict states):
        cdef str name
        for name, value in states.iteritems():
            self.set_state(name, value)

    cdef void push_state(self, str name):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:794:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...

    cdef void set_texture(self, int index, Texture texture)
    cdef void set_state(self, str name, value, int apply_now=?)
    cdef get_state(self, str name)
    cdef void set_states(self, dict states) except *
    cdef void push_state(self, str name) except *
                       ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:117:24: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void push_state(self, str name):
        stack = self.state_stacks[name]
        stack.append(stack[-1])
        self.flag_update()

    cdef void push_states(self, list names):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:799:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void set_texture(self, int index, Texture texture)
    cdef void set_state(self, str name, value, int apply_now=?)
    cdef get_state(self, str name)
    cdef void set_states(self, dict states) except *
    cdef void push_state(self, str name) except *
    cdef void push_states(self, list names) except *
                        ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:118:25: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void push_states(self, list names):
        cdef str name
        for name in names:
            self.push_state(name)

    cdef void pop_state(self, str name):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:804:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void set_state(self, str name, value, int apply_now=?)
    cdef get_state(self, str name)
    cdef void set_states(self, dict states) except *
    cdef void push_state(self, str name) except *
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
                      ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:119:23: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
        oldvalue = stack.pop()
        if oldvalue != stack[-1]:
            self.set_state(name, stack[-1])
            self.flag_update()

    cdef void pop_states(self, list names):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:811:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef get_state(self, str name)
    cdef void set_states(self, dict states) except *
    cdef void push_state(self, str name) except *
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
    cdef void pop_states(self, list names) except *
                       ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:120:24: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
            _active_texture = index
            glActiveTexture(GL_TEXTURE0 + index)
        texture.bind()
        self.flag_update()

    cdef void enter(self):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:831:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void set_states(self, dict states) except *
    cdef void push_state(self, str name) except *
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
    cdef void pop_states(self, list names) except *
    cdef void enter(self) except *
                  ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:121:19: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
        self.flag_update()

    cdef void enter(self):
        self._shader.use()

    cdef void leave(self):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:834:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void push_state(self, str name) except *
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
    cdef void pop_states(self, list names) except *
    cdef void enter(self) except *
    cdef void leave(self) except *
                  ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:122:19: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
        self._shader.use()

    cdef void leave(self):
        self._shader.stop()

    cdef void apply(self):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:837:9: 'apply' already defined

Error compiling Cython file:
------------------------------------------------------------
...
        self._shader.use()

    cdef void leave(self):
        self._shader.stop()

    cdef void apply(self):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:837:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
    cdef void pop_states(self, list names) except *
    cdef void enter(self) except *
    cdef void leave(self) except *
    cdef void apply(self) except *
                  ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:123:19: Previous declaration is here
 /home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'dependency_links'
   warnings.warn(msg)
 /home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'install_requires'
   warnings.warn(msg)

Cython check avoided.
Using this graphics system: OpenGL ES 2
running build_ext
Build configuration is:
 * use_rpi = 0
 * use_opengl_es2 = 1
 * use_opengl_debug = 0
 * use_glew = 0
 * use_sdl2 = 0
 * use_ios = 0
 * use_mesagl = 0
 * use_x11 = 0
 * use_gstreamer = 0
 * use_avfoundation = 0
 * use_osx_frameworks = 0
 * debug = False
Detected compiler is unix
building 'kivy.graphics.opengl' extension
arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -DNDEBUG -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -fPIC -I/home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm/usr/include -I/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/include/python2.7 -c kivy/graphics/opengl.c -o build/temp.linux-x86_64-2.7/kivy/graphics/opengl.o
creating build/lib.linux-x86_64-2.7
creating build/lib.linux-x86_64-2.7/kivy
creating build/lib.linux-x86_64-2.7/kivy/graphics
/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/src/tools/liblink -L/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/libs -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm build/temp.linux-x86_64-2.7/kivy/graphics/opengl.o -L/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/lib -lGLESv2 -lpython2.7 -o build/lib.linux-x86_64-2.7/kivy/graphics/opengl.so -L /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm/usr/lib -lm
building 'kivy.graphics.stencil_instructions' extension
arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -DNDEBUG -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -fPIC -I/home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm/usr/include -I/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/include/python2.7 -c kivy/graphics/stencil_instructions.c -o build/temp.linux-x86_64-2.7/kivy/graphics/stencil_instructions.o
/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/src/tools/liblink -L/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/libs -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm build/temp.linux-x86_64-2.7/kivy/graphics/stencil_instructions.o -L/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/lib -lGLESv2 -lpython2.7 -o build/lib.linux-x86_64-2.7/kivy/graphics/stencil_instructions.so -L /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm/usr/lib -lm
building 'kivy.graphics.transformation' extension
arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -DNDEBUG -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -fPIC -I/home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm/usr/include -I/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/include/python2.7 -c kivy/graphics/transformation.c -o build/temp.linux-x86_64-2.7/kivy/graphics/transformation.o
/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/src/tools/liblink -L/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/libs -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm build/temp.linux-x86_64-2.7/kivy/graphics/transformation.o -L/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/lib -lGLESv2 -lpython2.7 -o build/lib.linux-x86_64-2.7/kivy/graphics/transformation.so -L /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm/usr/lib -lm
building 'kivy.graphics.vbo' extension
arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -DNDEBUG -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -fPIC -I/home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm/usr/include -I/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/include/python2.7 -c kivy/graphics/vbo.c -o build/temp.linux-x86_64-2.7/kivy/graphics/vbo.o
kivy/graphics/vbo.c:1:2: error: #error Do not use this file, it is the result of a failed Cython compilation.
 #error Do not use this file, it is the result of a failed Cython compilation.
  ^
 error: command 'arm-linux-androideabi-gcc' failed with exit status 1
# Command failed: ./distribute.sh -m "kivy openssl lxml" -d "apvehicle"
# 
# Buildozer failed to execute the last command
# The error might be hidden in the log above this error
# Please read the full log, and search for it before
# raising an issue with buildozer itself.
# In case of a bug report, please add a full log with log_level = 2

            glClear(GL_COLOR_BUFFER_BIT)

    cdef void apply(self):
        ^
------------------------------------------------------------

kivy/graphics/fbo.pyx:326:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
    cdef void pop_states(self, list names) except *
    cdef void enter(self) except *
    cdef void leave(self) except *
    cdef void apply(self) except *
                  ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:123:19: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
    cpdef release(self)
    cpdef get_pixel_color(self, int wx, int wy)

    cdef void create_fbo(self)
    cdef void delete_fbo(self)
    cdef void apply(self)
                  ^
------------------------------------------------------------

kivy/graphics/fbo.pxd:27:19: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
    cdef void pop_states(self, list names) except *
    cdef void enter(self) except *
    cdef void leave(self) except *
    cdef void apply(self) except *
                  ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:123:19: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
    cpdef release(self)
    cpdef get_pixel_color(self, int wx, int wy)

    cdef void create_fbo(self)
    cdef void delete_fbo(self)
    cdef void apply(self)
                  ^
------------------------------------------------------------

kivy/graphics/fbo.pxd:27:19: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
    cdef void pop_states(self, list names) except *
    cdef void enter(self) except *
    cdef void leave(self) except *
    cdef void apply(self) except *
                  ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:123:19: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
    cpdef release(self)
    cpdef get_pixel_color(self, int wx, int wy)

    cdef void create_fbo(self)
    cdef void delete_fbo(self)
    cdef void apply(self)
                  ^
------------------------------------------------------------

kivy/graphics/fbo.pxd:27:19: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
    cdef void pop_states(self, list names) except *
    cdef void enter(self) except *
    cdef void leave(self) except *
    cdef void apply(self) except *
                  ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:123:19: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
        if self.context_state:
            context.set_states(self.context_state)
        if self.context_pop:
            context.pop_states(self.context_pop)

    cdef void set_state(self, str name, value):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:258:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef dict context_state
    cdef list context_push
    cdef list context_pop

    cdef RenderContext get_context(self)
    cdef void set_state(self, str name, value) except *
                      ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:61:23: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...

    cdef void set_state(self, str name, value):
        self.context_state[name] = value
        self.flag_update()

    cdef void push_state(self, str name):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:262:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef list context_push
    cdef list context_pop

    cdef RenderContext get_context(self)
    cdef void set_state(self, str name, value) except *
    cdef void push_state(self, str name) except *
                       ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:62:24: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...

    cdef void push_state(self, str name):
        self.context_push.append(name)
        self.flag_update()

    cdef void pop_state(self, str name):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:266:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef list context_pop

    cdef RenderContext get_context(self)
    cdef void set_state(self, str name, value) except *
    cdef void push_state(self, str name) except *
    cdef void pop_state(self, str name) except *
                      ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:63:23: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
        self._shader.set_uniform(name, value)

    cdef get_state(self, str name):
        return self.state_stacks[name][-1]

    cdef void set_states(self, dict states):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:789:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef int _use_parent_modelview

    cdef void set_texture(self, int index, Texture texture)
    cdef void set_state(self, str name, value, int apply_now=?)
    cdef get_state(self, str name)
    cdef void set_states(self, dict states) except *
                       ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:116:24: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void set_states(self, dict states):
        cdef str name
        for name, value in states.iteritems():
            self.set_state(name, value)

    cdef void push_state(self, str name):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:794:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...

    cdef void set_texture(self, int index, Texture texture)
    cdef void set_state(self, str name, value, int apply_now=?)
    cdef get_state(self, str name)
    cdef void set_states(self, dict states) except *
    cdef void push_state(self, str name) except *
                       ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:117:24: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void push_state(self, str name):
        stack = self.state_stacks[name]
        stack.append(stack[-1])
        self.flag_update()

    cdef void push_states(self, list names):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:799:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void set_texture(self, int index, Texture texture)
    cdef void set_state(self, str name, value, int apply_now=?)
    cdef get_state(self, str name)
    cdef void set_states(self, dict states) except *
    cdef void push_state(self, str name) except *
    cdef void push_states(self, list names) except *
                        ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:118:25: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void push_states(self, list names):
        cdef str name
        for name in names:
            self.push_state(name)

    cdef void pop_state(self, str name):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:804:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void set_state(self, str name, value, int apply_now=?)
    cdef get_state(self, str name)
    cdef void set_states(self, dict states) except *
    cdef void push_state(self, str name) except *
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
                      ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:119:23: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
        oldvalue = stack.pop()
        if oldvalue != stack[-1]:
            self.set_state(name, stack[-1])
            self.flag_update()

    cdef void pop_states(self, list names):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:811:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef get_state(self, str name)
    cdef void set_states(self, dict states) except *
    cdef void push_state(self, str name) except *
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
    cdef void pop_states(self, list names) except *
                       ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:120:24: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
            _active_texture = index
            glActiveTexture(GL_TEXTURE0 + index)
        texture.bind()
        self.flag_update()

    cdef void enter(self):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:831:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void set_states(self, dict states) except *
    cdef void push_state(self, str name) except *
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
    cdef void pop_states(self, list names) except *
    cdef void enter(self) except *
                  ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:121:19: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
        self.flag_update()

    cdef void enter(self):
        self._shader.use()

    cdef void leave(self):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:834:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void push_state(self, str name) except *
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
    cdef void pop_states(self, list names) except *
    cdef void enter(self) except *
    cdef void leave(self) except *
                  ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:122:19: Previous declaration is here

Error compiling Cython file:
------------------------------------------------------------
...
        self._shader.use()

    cdef void leave(self):
        self._shader.stop()

    cdef void apply(self):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:837:9: 'apply' already defined

Error compiling Cython file:
------------------------------------------------------------
...
        self._shader.use()

    cdef void leave(self):
        self._shader.stop()

    cdef void apply(self):
        ^
------------------------------------------------------------

kivy/graphics/instructions.pyx:837:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
    cdef void push_states(self, list names) except *
    cdef void pop_state(self, str name) except *
    cdef void pop_states(self, list names) except *
    cdef void enter(self) except *
    cdef void leave(self) except *
    cdef void apply(self) except *
                  ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:123:19: Previous declaration is here
 /home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'dependency_links'
   warnings.warn(msg)
 /home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'install_requires'
   warnings.warn(msg)

Cython check avoided.
Using this graphics system: OpenGL ES 2
running build_ext
Build configuration is:
 * use_rpi = 0
 * use_opengl_es2 = 1
 * use_opengl_debug = 0
 * use_glew = 0
 * use_sdl2 = 0
 * use_ios = 0
 * use_mesagl = 0
 * use_x11 = 0
 * use_gstreamer = 0
 * use_avfoundation = 0
 * use_osx_frameworks = 0
 * debug = False
Detected compiler is unix
building 'kivy.graphics.opengl' extension
arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -DNDEBUG -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -fPIC -I/home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm/usr/include -I/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/include/python2.7 -c kivy/graphics/opengl.c -o build/temp.linux-x86_64-2.7/kivy/graphics/opengl.o
creating build/lib.linux-x86_64-2.7
creating build/lib.linux-x86_64-2.7/kivy
creating build/lib.linux-x86_64-2.7/kivy/graphics
/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/src/tools/liblink -L/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/libs -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm build/temp.linux-x86_64-2.7/kivy/graphics/opengl.o -L/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/lib -lGLESv2 -lpython2.7 -o build/lib.linux-x86_64-2.7/kivy/graphics/opengl.so -L /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm/usr/lib -lm
building 'kivy.graphics.stencil_instructions' extension
arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -DNDEBUG -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -fPIC -I/home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm/usr/include -I/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/include/python2.7 -c kivy/graphics/stencil_instructions.c -o build/temp.linux-x86_64-2.7/kivy/graphics/stencil_instructions.o
/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/src/tools/liblink -L/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/libs -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm build/temp.linux-x86_64-2.7/kivy/graphics/stencil_instructions.o -L/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/lib -lGLESv2 -lpython2.7 -o build/lib.linux-x86_64-2.7/kivy/graphics/stencil_instructions.so -L /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm/usr/lib -lm
building 'kivy.graphics.transformation' extension
arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -DNDEBUG -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -fPIC -I/home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm/usr/include -I/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/include/python2.7 -c kivy/graphics/transformation.c -o build/temp.linux-x86_64-2.7/kivy/graphics/transformation.o
/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/src/tools/liblink -L/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/libs -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm build/temp.linux-x86_64-2.7/kivy/graphics/transformation.o -L/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/lib -lGLESv2 -lpython2.7 -o build/lib.linux-x86_64-2.7/kivy/graphics/transformation.so -L /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm/usr/lib -lm
building 'kivy.graphics.vbo' extension
arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -DNDEBUG -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -fPIC -I/home/user/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm/usr/include -I/home/user/my_git/Andhra-with-CSS-select/.buildozer/android/platform/python-for-android/build/python-install/include/python2.7 -c kivy/graphics/vbo.c -o build/temp.linux-x86_64-2.7/kivy/graphics/vbo.o
kivy/graphics/vbo.c:1:2: error: #error Do not use this file, it is the result of a failed Cython compilation.
 #error Do not use this file, it is the result of a failed Cython compilation.
  ^
 error: command 'arm-linux-androideabi-gcc' failed with exit status 1
# Command failed: ./distribute.sh -m "kivy openssl lxml" -d "apvehicle"
# 
# Buildozer failed to execute the last command
# The error might be hidden in the log above this error
# Please read the full log, and search for it before
# raising an issue with buildozer itself.
# In case of a bug report, please add a full log with log_level = 2

@inclement
Copy link
Member

This one is caused by using a version of cython too new for the most recent stable release. You can fix it by downgrading cython (I think 0.22 works, or 0.21 certainly should), or by trying kivy master.

@Zerokami
Copy link
Author

@inclement Thank you. I fixed the error by installing cython 0.21
pip install cython==0.21

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants