Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你们都用什么工具?demangle c++ 符号如何能够将其传递给分析器工具,例如opannotate?
谢谢
用于nm查看所有符号并c++filt进行拆解。
nm
c++filt
例子:
nm -an foo | c++filt
我使用的分析工具已经知道符号和源代码,因为它只是调试器。即使完全优化,我也可以构建包含符号的应用程序。