You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we just identified an issue within linuxdeploy when build folders are named in a certain way; this caught us on surprise.
Consider the following build folder name: /home/foo/workspace/project/build-linux-qt5-packaging/bin/myexe
Then running linuxdeployqt with at least --verbosity=0 (debug) reveals something like this:
...
Deploying dependencies for ELF file /home/foo/workspace/project/build-linux-qt5-packaging/bin/myexe
DEBUG: skipping linker related object linux-vdso.so.1 (0x00007ffc43dd7000)
DEBUG: skipping linker related object libMyLib.so.1.5.0 => /home/foo/workspace/project/build-linux-qt5-packaging/lib/libMyLib.so.1.5.0 (0x00007f0335072000)
linuxdeployqt thinks libMyLib.so.1.5.0 is a linker related object but it isn't, thus it will not deploy it
=> resulting appdir does not contain this library
=> executable from appdir unusable.