in reply to DynaLoader can't resolve multiple Linux shared objects

LD_LIBRARY_PATH has to be set before the process starts to be of any use.

I'm not saying doing this will help you; I'm just saying it's not surprising what you did attempt did not work.

Replies are listed 'Best First'.
Re^2: DynaLoader can't resolve multiple Linux shared objects
by boleary (Scribe) on Nov 14, 2018 at 20:06 UTC

    Thanks ikegami! I figured that was the case with the LD_LIBRARY_PATH. Thankfully, the previous answer by anonymous monk suggesting I add the -rpath $ORIGIN in my linker command provided the solution I so desperately needed.