appimage.github.io icon indicating copy to clipboard operation
appimage.github.io copied to clipboard

Create Qsampler

Open rncbc opened this issue 3 years ago • 4 comments

rncbc avatar Apr 16 '22 12:04 rncbc

qsampler: error while loading shared libraries: libgig.so.10: cannot open shared object file: No such file or directory

probonopd avatar Apr 16 '22 19:04 probonopd

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 /usr/lib64/libgig/libgig.so.10 is there just not being included on the linker-loader cache (ldconfig).

there must be a way to add /usr/lib64/libgig to the AppImage's /etc/ld.so.conf or equivalent ?

rncbc avatar Apr 17 '22 00:04 rncbc

Please see https://github.com/AppImage/appimage.github.io/pull/2864#issuecomment-1100811577, this seems to apply here as well. Thanks!

probonopd avatar Apr 17 '22 06:04 probonopd

You could edit the rpath of 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.

rncbc avatar Apr 17 '22 10:04 rncbc