I have a shared object (dll). How do I find out what all symbols are exported from that?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Do you have a "shared object" (usually a shared library on AIX), a UNIX shared library, or a Windows DLL? These are all different things, and your question conflates them all 🙁
dump -Tv /path/to/foo.o.readelf -Ws --dyn-syms /path/to/libfoo.so, or (if you have GNU nm)nm -D /path/to/libfoo.so.dumpbin /EXPORTS foo.dll.