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.
如何使用 clang 生成 C++ 代码的调用图?我知道我需要使用这个,但我找不到任何示例。
我已经尝试过为此使用 python 绑定,但它们似乎缺少一些重要的功能。
谁能提供一个使用当前 clang 的 API 来完成此任务的最小示例?
对于 C++(对于 C,只需使用 clang)
clang++ -Xclang -analyze -Xclang -analyzer-checker=debug.ViewCallGraph <file to analyze>
这将为您提供图像。