Urgent Help Needed to build Linux distribution
-
@jsulm, no i didn't create any plug in directory in that folder and from where i will find that xcb plugin.
@Ram_Thakkar77 Well, you have to. Qt plug-ins are in "plugins" subdirectory of you Qt installation.
-
@Ram_Thakkar77 Well, you have to. Qt plug-ins are in "plugins" subdirectory of you Qt installation.
@jsulm, i pasted plugins folder from Qt installation path and here is the screenshot of same:
Screenshot -
@jsulm, i pasted plugins folder from Qt installation path and here is the screenshot of same:
Screenshot@Ram_Thakkar77 No need to copy the whole plugin folder from Qt!
Create empty plugins subdirectory and put libqxcb.so from plugins/platforms of your Qt installation there. -
@Ram_Thakkar77 No need to copy the whole plugin folder from Qt!
Create empty plugins subdirectory and put libqxcb.so from plugins/platforms of your Qt installation there.@jsulm, i didnt found any libqxcb.so file in QT installation path. I found only libqxcb.so file and pasted in plugin folder but getting same error.
@jsulm sorry libqxcb.so i found but its giving me same error.
-
@jsulm, i didnt found any libqxcb.so file in QT installation path. I found only libqxcb.so file and pasted in plugin folder but getting same error.
@jsulm sorry libqxcb.so i found but its giving me same error.
@Ram_Thakkar77 Did you call the directory plugins or plugin? It should be plugins.
-
@Ram_Thakkar77 Did you call the directory plugins or plugin? It should be plugins.
@jsulm Its plugins.
-
@jsulm, i didnt found any libqxcb.so file in QT installation path. I found only libqxcb.so file and pasted in plugin folder but getting same error.
@jsulm sorry libqxcb.so i found but its giving me same error.
@Ram_Thakkar77 Keep in mind: libqxcb.so depends on other libraries. You can find out which libraries by calling:
ldd PATH_TO_LIBQXCB.SO
But don't pu all of them in your package, only those from Qt.
You will probably need libQt5XcbQpa.so.5 lib in your package as well. -
@Ram_Thakkar77 Keep in mind: libqxcb.so depends on other libraries. You can find out which libraries by calling:
ldd PATH_TO_LIBQXCB.SO
But don't pu all of them in your package, only those from Qt.
You will probably need libQt5XcbQpa.so.5 lib in your package as well.@jsulm Pasted above mentioned file but no luck. Getting same error.
-
@jsulm Pasted above mentioned file but no luck. Getting same error.
??.. Any suggestion??
-
??.. Any suggestion??
@Ram_Thakkar77 Did you put libQt5XcbQpa.so.5 and libQt5XcbQpa.so.5.7.1 in the directory where the script is?
Maybe somebody else has an idea? -
@Ram_Thakkar77 Did you put libQt5XcbQpa.so.5 and libQt5XcbQpa.so.5.7.1 in the directory where the script is?
Maybe somebody else has an idea?Well everything looks fine to me. Perhaps OP should run through all the steps once again. Check xcb's dependencies. Also Not required but try setting
QT_PLUGIN_PATH
explicitly. That's all I can think for now. -
I already pasted
libQt5XcbQpa.so.5 and libQt5XcbQpa.so.5.7.1
files in main directory as well as in plugins folder also. I also addedQT_PLUGIN_PATH
in .sh file and below is my .sh file code:#!/bin/sh appname=`basename $0 | sed s,\.sh$,,` dirname=`dirname $0` tmp="${dirname#?}" if [ "${dirname%$tmp}" != "/" ]; then dirname=$PWD/$dirname fi LD_LIBRARY_PATH=$dirname export LD_LIBRARY_PATH export QT_PLUGIN_PATH=$dirname/plugins $dirname/$appname "$@"
now the error is changed and here is the screen shot of error as well as my folder structure
-
@Ram_Thakkar77 According to the error
QtWebEngineProcess
is also required. Try copying it too. It is at location for eg.:
5.7/gcc_64/libexec/QtWebEngineProcess
Edit: Not sure of the first error.
-
OMG, streching my hairs. After copying QtWebEngineProcess Now getting so many error:
QXcbIntegration: Cannot create platform OpenGL context, neither GLX nor EGL are enabled WebEngineContext used before QtWebEngine::initialize() or OpenGL context creation failed. Qt WebEngine ICU data not found at /opt/Qt5.7.1/5.7/gcc_64/resources. Trying parent directory... Qt WebEngine ICU data not found at /opt/Qt5.7.1/5.7/gcc_64. Trying application directory... Qt WebEngine ICU data not found at /root/Desktop/QTEXETesting. Trying fallback directory... The application MAY NOT work.
-
@Ram_Thakkar77 Well I think you need to check this too.
http://doc.qt.io/qt-5/qtwebengine-deploying.html -
@Ram_Thakkar77 Well I think you need to check this too.
http://doc.qt.io/qt-5/qtwebengine-deploying.html@p3c0, After reading above link i pasted all files mentioned in that pages to my directory but still getting same error. any other way around to solve this issue??
-
Qt WebEngine ICU data not found at /root/Desktop/QTEXETesting. Trying fallback directory... The application MAY NOT work.
Did you deploy all the file as said here ?
http://doc.qt.io/qt-5/qtwebengine-deploying.html#deploying-resourcesat path
/root/Desktop/QTEXETesting
-
I pasted all files in same path and here is the scree shot of same
Screen shot -
@Ram_Thakkar77 Well it seems that the resources were found inside the application directory but there seems to be library incompatibility issues as seen the end.
Do you already have Qt installed at the default path on deployment machine ?
I'm too not sure which library is referring to older one. You just need toldd
to check if libraries from default path are referred. -
@Ram_Thakkar77 Well it seems that the resources were found inside the application directory but there seems to be library incompatibility issues as seen the end.
Do you already have Qt installed at the default path on deployment machine ?
I'm too not sure which library is referring to older one. You just need toldd
to check if libraries from default path are referred.@p3c0, yes QT is installed on my machine but for testing purpose i just renamed QT folder. I just need to check that whether without QT folder its working or not??