本文介绍了如何在Xcode中找不到构建日志中不存在的Clang警告标志的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个警告,我希望在Xcode中抑制,但我似乎找不到警告的名称。我已启用 -fdiagnostics-show-category = name
,日志显示这是一个语义问题。查看Clang的来源,我认为可能,中添加时的更多信息。
Searching source code, I'd guess it's warn_incompatible_qualified_id
, defined in DiagnosticSemaKinds.td
, which is one of those existing warnings that currently have no associated -W flag Possibly, more information in the revision log from when it was added.
这篇关于如何在Xcode中找不到构建日志中不存在的Clang警告标志的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!