I have a problem with environment variable LD_LIBRARY_PATH
.
When I run my bin, I get this error message:
./bignum: error while loading shared libraries: liballjoyn.so: cannot open shared object file: No such file or directory
I added my library to LD_LIBRARY_PATH
, like:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:'/home/nyu-debian/Desktop/Stage-Kaliterre/Project/Projects/AllJoyn/core/alljoyn/build/linux/x86_64/release/dist/cpp/lib/liballjoyn.so'
I also tried:
put -L
option - not working.- change
export
byenv
with the ./bignum in the end - not working.
All my attempts didn't work... what else can I try?
I'm on Debian Wheezy. This command work last weekend, but now it doesn't work anymore.