ldd doesn't work on dynamically linked binary

我们两清 提交于 2019-11-30 08:37:44

Like one of the comment says - you tried using ldd on 64 bit system to inspect a 32-bit ELF object. ldd uses the standard dynamic linker to trace the dependencies, so if your platform doesn't have the linker required by the ELF object being inspected, ldd fails. Readelf and objdump are more robust in these situations.

Note that in Fedora 21, to get ldd to identify 32bit .so files, I had to install the following:

sudo yum install glibc.i686 libgcc.i686 libstdc++.i686 glibc-devel.i686

I'm not sure which one of those fixed the "not a dynamic executable" error I was seeing in ldd.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!