@J.P-Jon said in Run Qt 5.3.0 on QNX 6.6:
Hi,
I'm trying to run Qt widget application on QNX 6.6 target. However, the following error occurred:
Dec 31 19:12:14.974 Test.528403 default* 9000 QQNX: failed to open navigator pps, errno=2
Dec 31 19:12:14.974 Test.528403 default 9000 QQnxVirtualKeyboard: Unable to open "/pps/services/input/control" for keyboard: No such file or directory (2).
Dec 31 19:12:14.974 Test.528403 default 9000 QQNX: failed to open buttons pps, errno=2
My test program is very simple:
#include <QApplication>
#include <QLabel>
int main(int argc, char** argv)
{
QApplication app(argc, argv);
QLabel *label = new QLabel("Hello World!");
label->show();
return app.exec();
}
The environment variables are set as follows:
export QT_PLUGIN_PATH=/opt/plugins
export QML2_IMPORT_PATH=/opt/qml
export QML_IMPORT_PATH=/opt/qml
export QQNX_PHYSICAL_SCREEN_SIZE="150,60"
export QT_QPA_FONTDIR=/opt/lib/fonts
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/graphics/iMX6X
Regards,
J.P