I am trying to compile a QML / C ++ code example for Android. I compiled the code without any problems. When you try to start, an error message appears:
QML debugging is enabled. Only use this in a safe environment.
Gen6+ requires Kernel 3.6 or later.
bubble: ../../../../../src/mesa/main/context.c:1501: _mesa_make_current: Assertion `newCtx->Version > 0' failed.
The program has unexpectedly finished.
On ubuntu, to check the kernel version, I run a command on the terminal:
$ dpkg -l | grep linux-headers | grep ii
Linux kernel version 3.11.0
So, I am running the development host with Ubuntu on version 3.11 . On the other hand, I read that devices running Android 4.2 are based on Linux Kernel 2.6 - which in my case is the development goal of the Nexus 7 tablet.
Any suggestion what is needed to get rid of this error?
source
share