You can use readelf
from the binutils
package to see what libraries are linked…
readelf -d /path/to/exe | grep NEEDED
or the lddtree
command from the pax_utils
package which uses readelf
and gives nicer output
You can use readelf
from the binutils
package to see what libraries are linked…
readelf -d /path/to/exe | grep NEEDED
or the lddtree
command from the pax_utils
package which uses readelf
and gives nicer output