How to list dependencies of c/c++ static library?
@Some programmer dude is right, but what you can do is build a simple program using this library statically and then check with ldd -v
what are the dependencies.
A static library have no such list of dependencies.
A static library is nothing more than an archive of object files. And as object files doesn't know what libraries they depend on, neither can a static library.