I want to view the exported functions of a shared library on Linux.
What command allows me to do this?
(On Windows I use the program depends)
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.
What you need is
nmand its-Doption:Exported sumbols are indicated by a
T. Required symbols that must be loaded from other shared objects have aU. Note that the symbol table does not include just functions, but exported variables as well.See the
nmmanual page for more information.