How to list the functions / symbols contained inside a dynamic library in mac os?
How to list the functions / symbols contained inside a dynamic library in mac os ?
I need to see the list of function expo开发者_运维问答rted by a dynamic library.
See nm(1)
, something like nm -gU <your lib>
.
Consider How to export symbols from a shared library and How do i find out what all symbols are exported from a shared object?
Also checkout nm
http://sourceware.org/binutils/docs-2.16/binutils/nm.html
精彩评论