I am encountering below error message while loading RV. Appreciate any inputs.
[centos@ip-0-0-0-0 bin]$ ./rv.bin
./rv.bin: error while loading shared libraries: libTwkAudio.so: cannot open shared object file: No such file or directory
Hi @sandeep1910,
Can you try to launch rv
instead of rv.bin
? rv
is a tcsh script that sets some environment variables that helps (and then starts) rv.bin
.
Thanks!
I managed to run it on Ubuntu just now, and it was an adventure getting the libraries and paths right. Alas I do not have detailed notes.
You could try ldd libTwkAudio.so
to check for its dependencies, but first make sure to set the directories so that rvXXX/lib
is in LD_LIBRARY_PATH
. Then also do ldd rv.bin
.
Ultimately you might need to fix the environment variables LD_LIBRARY_PATH
and LD_PRELOAD
before starting rv, so that the correct directories are searched.
Hey, I don’t know if you are still facing this issue, but if anyone faces this issue do the following thing. I was having the same issue in Ubuntu but I was able to solve it by adding this command in my ~/.bashrc
export LD_LIBRARY_PATH=/rv-centos7-x86-64-2023.0.2/lib/
the path should be the library path which comes with the RV package