Hello,

I use a static cross-compiled QT-Version 5.9.2 on x64 for armv7-gnueabihf (imx6).
My QMake-Configuration: (config.opt)
Qt Code:
  1. -commercial
  2. -debug
  3. -static
  4. -no-compile-examples
  5. -no-pch
  6. -nomake
  7. tests
  8. -nomake
  9. examples
  10. -prefix /opt/qt59
  11. -hostprefix /opt/qt59
  12. -device
  13. linux-imx6-g++
  14. -device-option
  15. CROSS_COMPILE=/data/fslc-fb-sdk/sysroots/x86_64-fslcsdk-linux/usr/bin/arm-fslc-linux-gnueabi/arm-fslc-linux-gnueabi-
  16. -sysroot /data/fslc-fb-sdk/sysroots/armv7at2hf-neon-fslc-linux-gnueabi
  17. -no-xcb
  18. -opengl
  19. es2
  20. -skip
  21. qtwebengine
  22. -eglfs
  23. -tslib
To copy to clipboard, switch view to plain text mode 

In my Application, the QtVirtualKeyboardPlugin is used.
My Project-File:
Qt Code:
  1. QTPLUGIN.imageformats = qsvg
  2. QTPLUGIN.bearer = -
  3. QTPLUGIN.qmltooling = -
  4. QTPLUGIN.platforminputcontexts = qtvirtualkeyboardplugin
To copy to clipboard, switch view to plain text mode 

If I remove QtVirtualKeyboardPlugin, my application will be compiled an will run on target successful.
If I add QtVirtualKeyboardPlugin (+ functionality), my application will not compile.
The following error messages will occure:
Qt Code:
  1. opt/qt59/plugins/platforminputcontexts/libqtvirtualkeyboardplugin.a(plugin.o): In function `QVirtualKeyboardPlugin::create(QString const&, QStringList const&)':
  2. plugin.cpp:(.text+0x6b8): undefined reference to `qt_static_plugin_QtQuickLayoutsPlugin()'
  3. plugin.cpp:(.text+0x7a8): undefined reference to `qt_static_plugin_QtQuickLayoutsPlugin()'
  4. plugin.cpp:(.text+0x7d8): undefined reference to `qt_static_plugin_QmlFolderListModelPlugin()'
  5. plugin.cpp:(.text+0x8c8): undefined reference to `qt_static_plugin_QmlFolderListModelPlugin()'
  6. plugin.cpp:(.text+0x8f8): undefined reference to `qt_static_plugin_QtVirtualKeyboardStylesPlugin()'
  7. plugin.cpp:(.text+0x9e4): undefined reference to `qt_static_plugin_QtVirtualKeyboardStylesPlugin()'
To copy to clipboard, switch view to plain text mode 

What I am doing wrong?
Thanks for tips/tricks,