找出静态C库有哪些功能
我有一个静态 C 库(例如 mylib.a
),我想知道是否可以找出该文件内实现了哪些函数。我没有相应的头文件。我需要的相当于 javap< /code>
对于 Java。
I have a static C library (say mylib.a
) and I was wondering if it's possible to find out what functions are implemented inside that file. I don't have a corresponding header file. what I need is like the equivalent of javap
for Java.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Windows 上,您可以使用 dumpbin。在 Linux 及其朋友上,您可以使用
nm
。On Windows you can use
dumpbin
. On Linux and friends you can usenm
.使用 nm。这只会为您提供符号名称 - 其中大多数以
T
为前缀的符号将是函数。函数参数不保留在二进制文件中。Use nm. That will only give you the symbol names - of which most of the symbols prefixed with
T
will be functions. Function arguments are not retained in the binary.