如何在 Linux 上查看(C 和 C++)二进制文件的符号?

发布于 2024-08-03 17:09:51 字数 156 浏览 4 评论 0原文

你们都使用哪些工具? demangle c++ 符号如何能够将其传递给分析器工具,例如 opannotate

谢谢

Which tools do you guys use? How do demangle c++ symbols do be able to pass it to profiler tools, such as opannotate?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

若无相欠,怎会相见 2024-08-10 17:09:51

使用 nm 查看所有符号,并使用 c++filt 进行解角度。

例子:

nm -an foo | c++filt

Use nm to see all symbols and c++filt to demangle.

Example:

nm -an foo | c++filt
十秒萌定你 2024-08-10 17:09:51

我使用的分析工具已经知道符号和源代码,因为它只是调试器。即使经过全面优化,我也可以构建包含符号的应用程序。

The profiling tool I use already knows the symbols and source code, since it is just the debugger. I can build the app with symbols included, even with full optimization.

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