有什么方法可以知道目标文件中导出了哪些符号?
您好,我在 Linux 环境中工作,我必须链接到一个已编译的目标文件,该文件为我提供了一些服务(services.o),我知道其中一些服务,但我想知道哪些是所有导出的它的符号。
在没有来源的情况下有什么办法可以实现这一点吗?如果是这样,怎么办?
非常感谢你。
Hi I'm working in a Linux environment and I have to link to a object file already compiled which offers me some services (services.o) and I know some of them, but I'd like to know which are all of the exported symbols of it.
Is there any way to accomplish this not having the sources? If so, how?
Thanks you very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试
nm
——这个工具就是为了这个目的而存在的。Try
nm
-- this tool is there for just this purpose.另一个选项是 objdump 它也可以向您展示许多其他内容
Another option is
objdump
which also can show you a bunch of other stuff或者您可以使用readelf -s,这提供了更多详细信息。
or you can use
readelf -s
, this provides more detail infos.