spleen1981 / retroarch-kodi-addon-CoreELEC

RetroArch KODI add-on for CoreELEC
53 stars 6 forks source link

serach lib/pulseaudio to find libpulseaudiocommon*.so in aarch64 hook ld #4

Closed hbiyik closed 2 years ago

hbiyik commented 2 years ago

When aarch64 hook searchs for libpulseaudio.so dependencies, it can not find libaudiocommon, because it is stored under lib/pulseaudio/ folder. Therefore it is necessary to search this folder explicitly to find the dependencies, if not the executed binary throws error: can not find shared library libpulseaudiocommon.so

spleen1981 commented 2 years ago

good catch, but it is better to use a more general approach. Added 09a40fd275528e64452635f6c24c2e8c0bb885de which will scan all subdirs of given lib src dir, including the one added explicitly above. Thanks, closing this