How do I view the list of functions a Linux shared

2020-01-25 12:05发布

问题:

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)

回答1:

What you need is nm and its -D option:

$ nm -D /usr/lib/libopenal.so.1
.
.
.
00012ea0 T alcSetThreadContext
000140f0 T alcSuspendContext
         U atanf
         U calloc
.
.
.

Exported sumbols are indicated by a T. Required symbols that must be loaded from other shared objects have a U. Note that the symbol table does not include just functions, but exported variables as well.

See the nm manual page for more information.



回答2:

objdump -T *.so may also do the job



回答3:

On a MAC, you need to use nm *.o | c++filt, as there is no -C option in nm.