You can use nm with the --demangle option:
nm -s
having tried this on a sample .so gives me a conclusion like
00005820 T detail :: print_ (std :: ostream &, cv :: Mat const &, std :: string const &)
T simply means that it is in the object files used to create the .so and does not need linker permission.
juanchopanza
source share