linux下查看so依赖的库

原文链接:https://blog.csdn.net/halfsking/article/details/84833469
#1. 查看依赖的库:
objdump -x xxoo.so | grep NEEDED

#2. 查看缺失的库:
ldd xxoo.so
#如果某个依赖的库不存在,会输出类似 OOXX.so not found 字样。

其它参考:

1. http://blog.csdn.net/kongqz/article/details/4027912

2. http://man.linuxde.net/ldd

 

上一篇:linux – 使用ldd -u,输出是“Unused direct dependencies:/lib64/libc.so.6”,但我真的使用printf()


下一篇:编译问题处理方法