Open DavidLazarescu opened 1 year ago
Please check what might be drawing in sql by running, prior to running linuxdeployqt, on your AppDir:
grep -i -e sql ./Your.AppDir
and the same for your qml directory.
Please check what might be drawing in sql by running, prior to running linuxdeployqt, on your AppDir:
grep -i -e sql ./Your.AppDir
and the same for your qml directory.
Nothing in my src directory mentions sql
The only thing that I was able to find is this in the CMakeCache.txt
Oh, it's Qt6. I never even tested linuxdeployqt with that. Possibly you are right and it is related to that line, I don't know.
when I upgrade Qt to 6.6.1, I have the same problem (Qt 6.5.3 is ok)
seems that some qml things depend on SQL
log with -verbose=3
:
log: Using ldd:
Log: inspecting "/tmp/tmp.9grDFQLFtI/remote_operator/lib//libQt6QmlLocalStorage.so.6"
...
Log: dylib.binaryPath "/home/ouyankai/Qt/6.6.1/gcc_64/lib/libQt6Sql.so.6"
...
I don't know how to solve or avoid it, I just installed the mimersql now
Does it work when installing mimersql for you?
Yes. After I installed mimersql, I successfully released a app (test passed)
I am getting the following method when trying to create an app image from my application.
I only use the following Qt modules though:
find_package(Qt6 6.5 REQUIRED COMPONENTS Core Quick Widgets Network Gui QuickControls2 Test)
thus I suppose that this could be a bug.I'd appreciate any help on this.