Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Running qt creator via remote desktop

We are developing a software using QT creator. The software is meant to run on windows and on an ARM mini-computer running Debian. To test the software on the mini-computer, we logged in on the mini computer using ssh and an exported display. Some programs like Inkscape run fine, but we can't get to run QT Creator. It always displays the following errors:

No tool chain set from kit "Desktop".
No tool chain set from kit "Desktop".
Cant find EGLConfig, returning null config
Unable to find an X11 visual which matches EGL config 0
Could not initialize OpenGL for RasterGLSurface, reverting to RasterSurface.
Cant find EGLConfig, returning null config
Unable to find an X11 visual which matches EGL config 0
Could not initialize OpenGL

We also tried to log in from another x86 linux computer, but this created the same errors. Thus we suppose that the problems are linked to the architecture. Does anybody know how to solve this issue?

EDIT: We just tried to access QT creator from another ARM Debian mini-computer and it also fails. Thus it does not seem to be related to the architecture as we first suspected.

(We could of course do cross compiling and remote debugging, but we try to avoid this)

like image 953
Paul R. Avatar asked Jan 06 '23 01:01

Paul R.


1 Answers

Try loading qtcreator without the Welcome addon:

qtcreator -noload Welcome

The Welcome addon uses OpenGL which probably isn't supported by X forwarding.

like image 79
anorm Avatar answered Jan 08 '23 13:01

anorm