美文网首页
Linux 查看依赖库

Linux 查看依赖库

作者: 可不期诺Cappuccino | 来源:发表于2021-09-26 17:15 被阅读0次

    1.查看依赖的库:
    objdump -x xxx.so | grep NEEDED

    2.查看可执行程序依赖的库:
    objdump -x 可执行程序名 | grep NEEDED

    3.查看缺少的库:
    ldd xxx.so
    4.查看库版本编译等信息:
    strings xxx.so
    -L -rpath -rpath-link 添加动态库路径

    相关文章

      网友评论

          本文标题:Linux 查看依赖库

          本文链接:https://www.haomeiwen.com/subject/pdaqnltx.html