c++ - Qt5: cross-compiling static program with evdev-support -


i'm trying cross compiling simple program. natively compiling on computer works (the program functionable). when cross-compiling dev-board, linuxfb work out of box. no input generated.

that's how qt configured:

./configure -opensource -confirm-license -prefix /opt/qt5-armhf -static -no-qml-debug -xplatform armhf-g++ -no-gif -qt-libpng -no-libjpeg -no-openssl -no-cups -no-eglfs -no-directfb -qpa linuxfb -no-opengl -nomake examples -nomake tests  

that's .pro:

qt += widgets destdir     = bin headers     = src/mainwindow.h src/modules/repartitionmodule.h src/modules/configmodule.h sources     = src/main.cpp src/mainwindow.cpp src/modules/repartitionmodule.cpp resources   = installer.qrc qtplugin   += qevdevkeyboardplugin qevdevmouseplugin 

i'm getting following output @ dev board:

this plugin not support setparent! 

there seems no difference between starting program using -plugin evdevxxx or parameters without. what's wrong , how fix it?


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -