如何静态分析C++和 Objective-C++代码?

发布于 2024-09-01 13:29:36 字数 168 浏览 10 评论 0原文

“构建和分析”选项似乎不适用于 .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 技术交流群。

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

发布评论

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

评论(2

山有枢 2024-09-08 13:29:36

clang 的 C++ 支持尚未完成 clang 网站

Apple 的版本更加明确 clang 手册页

Clang 目前不支持 C++

clang's C++ support is not complete yet clang web site

Apple's version is more explicit clang man page

Clang currently does not have C++ support

我喜欢麦丽素 2024-09-08 13:29:36

一种方法是创建 /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.

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