Dario
Dario

Reputation: 147

How to List all functions in a *.so C library

Just created a *.so library that contains some functions. How can i see all the functions it contains.I have tried to view the content but all i see is some garbage.

Upvotes: 5

Views: 2513

Answers (1)

helloV
helloV

Reputation: 52375

nm -o

man nm
nm - list symbols from object files

Upvotes: 4

Related Questions