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.
是否存在与 VC++ 警告 C4018:有符号/无符号不匹配的 gcc 等效项?我们在使用 /WX 运行的 Windows 上进行了自动构建,我希望在 Linux 上构建时也能够捕捉到这些警告。
-Wsign-compare
最佳实践是使用它进行编译,-Wall为您提供所需的大部分警告。
-Wall
g++ -c -Wall code.cpp -o code.o
这是在大多数项目中所做的,实际上它会启用您想要的警告。