Ubuntu交叉编译到树莓派上出现qt.qpa.xcb: could not connect to display 的问题解决

我使用的是Ubuntu18.4,树莓派4B,主机Ubuntu交叉编译到树莓派上,出现以下错误:

qt.qpa.xcb: could not connect to display 
qt.qpa.xcb: could not connect to display 
qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "/usr/local/qt5pi/plugins/platforms" even though it was found.
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.

本人使用的platform是xcb,不是eglfs,因为eglfs默认是全屏的,坑爹的玩意,搞了我好几天。出现这个问题,并且libxcb.so已经找到了,很是纳闷,参考了一位大神的文章:https://blog.csdn.net/qq21497936/article/details/79722924。他是在qt的项目管理那,添加了全局变量DISPLAY,并设置为:10.0,但是我的不行,要设置成:0.0才可以显示。

Ubuntu交叉编译到树莓派上出现qt.qpa.xcb: could not connect to display 的问题解决_第1张图片

所以各位可以多试试几个参数值,比如从:0.0开始,一直试。

但是这样设置,每个项目都要这样整,干脆在树莓派上,设置一个全局变量:

sudo vim /etc/profile

添加:

export DISPLAY=:0.0,注意这个值是要试出来的

按esc键,然后:wq退出保存

刷新:

source /etc/profile

有疑问可私信

你可能感兴趣的:(编译器OR日常心得,ubuntu,linux,qt,raspberry,pi)