How do list the symbols being exported from a .so file. If possible, I'd also like to know their source (e.g. if they are pulled in from a static library).
I'm using gcc 4.0.2, if that makes a difference
|
|
|
|
|
|
|
I agree with Konrad, but I will add the "-C" option which demangle the symbols. If it's a C++ library, it's more readable demangled.
|
||
|
|
|
|
If your
You only should extract those that are defined in this
|
||
|
|
|
|
Try adding -l to the nm flags in order to get the source of each symbol. If the library is compiled with debugging info (gcc -g) this should be the source file and line number. As Konrad said, the object file / static library is probably unknown at this point. |
||
|
|
|
|
You can use the /EDIT: The tool's name is of course |
||
|
|