5.1.2. cl.exe (Microsoft Visual Studio C Compiler)¶
cl.exe is a proprietary Compiler available as part of the Microsoft Visual Studio IDE
5.1.2.1. Compiler Options — Output¶
Compiler options to control the output of compilation.
- /Fe¶
Select the name of generated Executable File.
5.1.2.2. Compiler Options — Warnings¶
Compiler options to control the warnings
- /W4¶
Enable till the highest level of warning.
- /WX¶
Treat all warnings as error.
5.1.2.3. Compiler Options — Other¶
Miscellaneous compiler options
- /nologo¶
Do not print LOGO / Copyright Information / Version number. etc. of the compiler / tool / executable. Where applicable, this makes the compilation silent.