Cross compile dont gen QLabel and QPushbutton and Fontconfig pre-condition
-
I found in ..\qt-everywhere-opensource-src-5.8.0\qtbase\lib a readme that said
If this directory is empty, you probably forgot to compile the Qt library.my question is did I need to compile qt lib before do generate my qt-built?
-
Sorry, I meant not supported.
-
You have already answer this in this post. it's because qtscript module it's obsoleted.
-
I don't see the relation here with the QtScript module.
-
with the qtscript module you need to specify the arm achitecture or to skip qtscript other else we have a Error that said he can't support Arm achitecture
-
So this thread is solved ?
-
No because this is what i get on my raspberry pi:
and that was what I want to get:
how i can fix it?
-
Good question that requires that you provide more information like warning/error messages your application is generating. Type of backend used to start your application etc.
-
Good question that requires that you provide more information like warning/error messages your application is generating. Type of backend used to start your application etc.
@SGaist this i why i'm so confused and i call help... they doesn't have any warnning or error.
-
Again, what backend are you using on the Pi ?
-
Ok sorry guys , maybe it's my poor english but what do you exactly mean by backend ?
-
Are you using xcb, LinuxFB, EGLFS, other ?
-
How I can verify which one i use?
-
What parameters are passed to your application when you start it ?
You can start your application with the
QT_DEBUG_PLUGINS
environment variable set to 1 so you can see what plugins are loaded. -
i think i passed no parameter i just write in my console "sudo ./Test5".
so you tell me to do write "sudo ./Test 5 QT_DEBUG_PLUGINS=1" or i need to add QT_DEBUG_PLUGINS and set value at 1 in build environment of qt creator. -
i think i passed no parameter i just write in my console "sudo ./Test5".
so you tell me to do write "sudo ./Test 5 QT_DEBUG_PLUGINS=1" or i need to add QT_DEBUG_PLUGINS and set value at 1 in build environment of qt creator.@CrazyCreepy Why sudo?
What @SGaist means is:QT_DEBUG_PLUGINS=1 ./Test
-
if you are not root you need to add sudo :P tanks i try this
-
Well i try to do that, but nothing it's happenning...
-
Either it's:
export QT_DEBUG_PLUGINS=1 ./Test
or
QT_DEBUG_PLUGINS=1 ./Test
-
export QT_DEBUG_PLUGINS=1 it's work and the result is ```
QFactoryLoader::QFactoryLoader() checking directory path "/usr/local/qt5/plugins/platforms" ...
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5/plugins/platforms/libqeglfs.so"
Found metadata in lib /usr/local/qt5/plugins/platforms/libqeglfs.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
"MetaData": {
"Keys": [
"eglfs"
]
},
"className": "QEglFSIntegrationPlugin",
"debug": false,
"version": 329728
}Got keys from plugin meta data ("eglfs")
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5/plugins/platforms/libqlinuxfb.so"
Found metadata in lib /usr/local/qt5/plugins/platforms/libqlinuxfb.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
"MetaData": {
"Keys": [
"linuxfb"
]
},
"className": "QLinuxFbIntegrationPlugin",
"debug": false,
"version": 329728
}Got keys from plugin meta data ("linuxfb")