Hello, I am working on an open embedded project, and am learning about QT on the way.
QT version 5.3.2 will not launch on my board because: “This application failed to start because it could not find or load the Qt platform plugin “eglfs”.”
This error makes sense, because I have not activated any eglfs platform plugins. Currently during the configuration of qtbase in my build, I can see the following:
| QPA backends:
| DirectFB …………. no
| EGLFS ……………. no
| KMS ……………… no
| LinuxFB ………….. no
| XCB ……………… no
I learned from the following source, http://doc-snapshot.qt-project.org/qt5-dev/embedded-linux.html, that I have to set something or activate the EGLFS plugin. I have attmpted to add the following command to the qtbase.inc file:
QT_QPA_PLATFORM = “EGLFS”
Even when I add this command, I still only have libqminimal build as opposed to libqeglfs. So my QT_QPA_PLATFORM statement is not being set correctly.
Does anyone have any recommendations or suggestions on how to get EGLFS to built and install correctly when I am configuring qtbase?
↧