如何静态分析C++和 Objective-C++代码?
“构建和分析”选项似乎不适用于 .cpp 和 .mm 文件。我在没有任何标准 #includes 的情况下对单个文件尝试了“clang --analyze”,效果很好。但是我无法在我的 Xcode 项目上运行它。我无法找到一种方法让 clang 找到标准的 #includes,甚至像 UIKit.h 一样。有什么线索吗?
The "Build and analyze" option doesn't seem to work for .cpp and .mm files. I tried "clang --analyze" on individual files without any standard #includes and it works well. However I'm not able to run it on my Xcode project. I couldn't figure out a way to make clang find the standard #includes like even UIKit.h. Any clues?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
clang 的 C++ 支持尚未完成 clang 网站
Apple 的版本更加明确 clang 手册页
clang's C++ support is not complete yet clang web site
Apple's version is more explicit clang man page
一种方法是创建 /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.1.2.sdk/System/Library/Frameworks/XXX.framework/Headers 中存在的框架的符号链接,并使用 - 将 clang 指向符号链接我选择。
One way is to create symlinks to the Frameworks present in /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.1.2.sdk/System/Library/Frameworks/XXX.framework/Headers and point clang to the symlinks using the -I option.