找出静态C库有哪些功能

发布于 2024-08-26 14:54:06 字数 237 浏览 9 评论 0原文

我有一个静态 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏末 2024-09-02 14:54:06

在 Windows 上,您可以使用 dumpbin。在 Linux 及其朋友上,您可以使用 nm

On Windows you can use dumpbin. On Linux and friends you can use nm.

泪是无色的血 2024-09-02 14:54:06

使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文