我已经使用带有动态链接库的 Qt Creator 成功开发了一个图形化的 Qt 5.15.2 应用程序。由于各种原因,我确定静态链接更适合我的应用程序。我试图将我的开发环境切换为使用静态库而不是动态库。我的应用程序构建没有错误,但是当我将我的应用程序部署到开发板(运行 Debian 11.5 的 BeagleBone Black)时,出现以下错误:
qt.qpa.plugin: Could not find the Qt platform plugin "linuxfb" in ""
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.
我传入了一个-platform linuxfb
命令行参数,我构建了我自己的静态 Qt 库,我添加CONFIG += static
到我的.pro
文件中,我在 Qt Creator 中使用静态库。我需要做一些特别的事情才能让linuxfb
库/插件链接吗?任何对我如何解决这个问题的见解都将不胜感激。