Manjaro doesn't search for shared object files in /usr/local/lib

Manjaro doesn’t seem to find shared libraries in /usr/local/lib.
I’m trying to run “Span” (a part of Avispa). This requires a shared library file libtk8.5.so.0.
I have installed them, but having a hard time making it to be used by span.
Please see the below screenshot.

I have tried all the methods given here: linux - Is /usr/local/lib searched for shared libraries? - Stack Overflow with no luck.

App search for libtk8.5.so.0 file, but you have libtk8.5.so. If you are sure that is proper library you can create link:

sudo ln -s /usr/local/lib/libtk8.5.so /usr/local/lib/libtk8.5.so.0

It worked. I had to create symlinks for 2 of the .so files in /usr/lib (not in /usr/local/lib).
Thanks a lot! :slight_smile:

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.