我已经获得了由GCC和Visual Studio编译器使用Makefile构建的应用程序。
代码应在Visual Studio的警告级别4(VS是主要编译器)下无警告编译,并且某些项目需要设置警告级别3。
需要传递给GCC的相应-Wsomething
标志是什么,以便警告级别相等?
我需要/W4
和/W3
的设置,为了完整性,/W2
和/W1
将会受到赞赏。
对于/W4
,我目前使用这些标志:
-Wall
-Wno-comment
-Wno-parentheses
-Wno-missing-braces
-Wno-char-subscripts
-Wno-write-strings
-Wno-unknown-pragmas