This probably already has an answer but I couldn't find it.
I want to know which shared object is used by the binary (based on LD_LIBRARY_PATH
, /etc/ld.so.conf
, etc...). Something similar to the which
command but for .so
.
Thanks
This probably already has an answer but I couldn't find it.
I want to know which shared object is used by the binary (based on LD_LIBRARY_PATH
, /etc/ld.so.conf
, etc...). Something similar to the which
command but for .so
.
Thanks
You should use the ldd
utility. In the same environment you would load your executable (Same LD_LIBRARY_PATH, e.t.c.)