I\'m trying to get a system up and running, and am having problems with the OpenMotif shared libraries. I have their directory in LD_LIBRARY_PATH, but it still can\'t find them
The binaries I had were looking for the 32-bit versions of the shared libraries, I had the 64-bit installed. Stupid mistake. LDD didn't produce a very insightful error message, but the binary did when I tried to run it.
Did you export LD_LIBRARY_PATH? the export
keyword tells Bash to send any variables to subprocesses - otherwise ldd will never see LD_LIBRARY_PATH.