XCode 4 分析配置?

发布于 2024-12-21 08:34:28 字数 101 浏览 1 评论 0原文

有没有办法配置 XCode 4 静态分析器工具报告和不报告哪些类型的问题?

我正在处理一些“有效”但存在大量静态分析问题的遗留代码,并且我试图首先列出某些可能更关键的问题。

Is there a way to configure which types of problems the XCode 4 static Analyzer tool reports and doesn't report?

I'm am dealing with some legacy code that "works" but has tons of static analysis issues, and am trying to list certain potentially more critical issues first.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

一萌ing 2024-12-28 08:34:28

我自己没有太多自定义 Clang(Xcode 使用的静态分析器)的经验,但是 这篇博文似乎指出了您可以进行的两个不同的更改:

  1. 在构建设置中关闭某些单独的警告类型
  2. 使用pragma来忽略特定警告一旦你意识到正确的论点,

虽然这些选项并没有真正提供任何“优先考虑”警告的方法,但你至少可以暂时忽略那些你知道不那么重要的警告。

I don't have a lot of experience customizing Clang (the static analyzer Xcode uses) myself, but this blog post seems to point to two different change you can make:

  1. Turning off some individual warning types in the Build Settings
  2. Using pragma to ignore specific warnings once you're aware of the right argument

While these options don't really provide any method of "prioritizing" the warnings, you can at least temporarily ignore the ones that you know to be less critical.

放肆 2024-12-28 08:34:28

在 Xcode 4 中,在项目或目标构建设置下,靠近底部的是 Apple LLVM 编译器 x.0 - 警告和静态分析器 - 检查器的设置。在这些构建设置中,可以关闭或打开“产品分析”菜单生成的各种警告,例如报告“死店”等。

In Xcode 4, under project or target Build Settings, near the bottom, are the settings for the Apple LLVM compiler x.0 - Warnings and Static Analyzer - Checkers. In those build settings, one can turn off or on various warnings that the Product Analyze menu generates, such as report Dead Stores, etc.

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