方法一
nm -D **.so
但这样能看到所有的导出,乱七八糟的很多,筛选用:
nm **.so | grep XX
方法二objdump -tT **.so
Linux 查看.so中导出函数
原文:http://www.cnblogs.com/wynn0123/p/6286286.html