如何对C++进行静态分析使用 Eclipse cdt 编写代码?
我需要使用 CDT 获取 C++ 程序的静态信息。无需构建项目,只需获取基本信息(命名空间、类、扩展关系、方法、调用、字段)并将其保存到数据库。有代码示例或开源插件吗?谢谢!
我尝试了很多方法,但效果都不是很好。有人说codan是一个选择,但它不适用于我的环境...
PS:CDT是必要的。我使用 Eclipse Indigo。
I need to get the static information of C++ program with CDT. No need to build the project, just to get the basic information(namespace, class, extends relation, method, call, field) and save them to database. Is there any code examples or opensource plugin? thx!
I have tried a lot of methods but they do not work very well. someone says that codan is a choice, but it doesn't work on my environment...
PS: CDT is necessary. I use Eclipse Indigo.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Eclipse CDT已经内置了用于扩展关系、方法调用的工具。它是 类型层次结构查看和调用层次结构视图。您必须为您的项目构建索引才能使所有这些工具发挥作用。
Eclipse CDT has already built-in tools for extends relation, method call. It is Type Hierarchy view and Call Hierarchy view. You have to build Index of your project for all this tools to work.