Create Qsampler
qsampler: error while loading shared libraries: libgig.so.10: cannot open shared object file: No such file or directory
qsampler: error while loading shared libraries: libgig.so.10: cannot open shared object file: No such file or directory
this is probably due to libgig.so.10 being actually installed as
there must be a way to add /usr/lib64/libgig to the AppImage's /etc/ld.so.conf or equivalent ?
Please see https://github.com/AppImage/appimage.github.io/pull/2864#issuecomment-1100811577, this seems to apply here as well. Thanks!
You could edit the
rpathof the application or library that is trying to load this library: https://nehckl0.medium.com/creating-relocatable-linux-executables-by-setting-rpath-with-origin-45de573a2e98
the rpath is now added to the upstream build binary target:
patchelf --set-rpath /lib/lib64/libgig $DESTDIR/usr/bin/qsampler
the issue may now be fixed; you may retrigger the checks, please, thanks.