c - Finding dependencies of a compiled library on Unix -


is there way find names of libraries given library depends on?

basically have ".so" file load dynamically, , know other .so files it's going try load

update 07/07: found /proc//maps pretty useful, gives locations of loaded dynamic libraries given process

type readelf -a <path-to-library> | grep 'needed' in terminal.

note: readelf part of binutils.


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -