我正在学习C,在某些例子中,我发现“使用gcc -W启用警告”,
但请阅读此处的文档:http://gcc.gnu.org/onlinedocs/gcc-4.6.3/gcc/Warning-Options.html
我找不到-W做什么。
有人可以解释一下吗?
我说的是W而不是w。
此致
答案 0 :(得分:15)
-W
现已被-Wextra
弃用,新版本为gcc
。
来自gcc
手册页:
-Wextra
This enables some extra warning flags that are not enabled by -Wall.
(This option used to be called -W. The older name is still supported, but
the newer name is more descriptive.)