Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我正在做一些重构,而且我没有预先得到所有的错误真的很烦人。如何增加限制或删除限制,以便编译器输出它可以找到的所有错误?
所以我找到了怎么做。您添加此编译器标志:
-ferror-limit=0
0 表示不会因为错误太多而停止。
这似乎是一个问答,解释了如何在 Xcode 4 中添加编译器标志:
Xcode 项目范围的编译器标志
首选项 > 常规 > [x] 出错后继续构建
这是编译并将标志传递给 make 命令的完整语法:
make install CFLAGS="-ferror-limit=0"
也如以下链接中所述: https ://developer.apple.com/library/content/documentation/Porting/Conceptual/PortingUnix/compiling/compiling.html