I have an executable project that uses a shared library that includes a static library. Then from the executable I am trying to load another shared library with dlopen. This library was found, but it cannot find characters from the static library.
Here is the structure:
Both SHARED LIB 1and SHARED LIB 2are associated with /usr/lib.
It seems like I'm missing a few flags.
How can I solve this problem?
source
share