There is a batch process called
VSVAR32.BAT in the folder where cl.exe is located
Run it once first, then you can use cl.exe Compile your code.
CL.exe is a 32-bit tool that controls the Microsoft C and C++ compilers and linkers. The compiler produces Common Object File Format (COFF) object (.obj) files. The linker produces an executable file (.exe) or a dynamic link library file (DLL).
Note that all compiler options are case-sensitive.
To compile but not link, use /c.
Use NMAKE to generate the output file.
Use BSCMAKE to support class browsing.
The following is a complete classified list of compiler options.
Optimization
Option function
/O1 Create small code
/O2 Create fast code
/Oa Assume no aliases
/Ob controls inline expansion
/Od disables optimizations
/Og uses global optimizations
/Oi generates internal Function
/Op improves floating-point consistency
/Os code size first
/Ot code speed first
/Ow Assumed in Use aliases in function calls
/Ox Use maximum optimization (/Ob1gity /Gs)
/Oy Omit frame pointers
Code generation
Option function
/clr enables the managed extension of C++ and generates output files running on the public language runtime
/EH specifies the exception handling model
< p>/G3 optimizes code to optimize for the 386 processor. Discontinued in Visual C++ 5.0, the compiler ignores this option/G4 optimizes code to prefer the 486 processor.
Deprecated in Visual C++ 5.0, the compiler ignores this option
/G5 optimizes code to prefer Pentium
/GB is equivalent to /G6; set the value of _M_IX86 Use __cdecl calling convention for 600
/Gd
/Ge Activate stack probing
/GF
/GF Enable string pooling
/GH Call hook function _penter
/GH Call hook function _pexit
/GL Enable full program optimization
/Gm Enable minimal regeneration
/Gr Enable run-time type information (RTTI)
/Gr Use the __fastcall calling convention
/GS Control stack probing
/GT supports fiber safety for data allocated using static thread local storage
/GX enables synchronous exception handling
/Gy enables function-level linking
/GZ uses the __stdcall calling convention
/MD uses MSVCRT.lib to create a multi-threaded DLL
/MDd uses MSVCRTD.lib to create a debugging multi-threaded DLL
< p>/ML Use LIBC.lib to create a single-threaded executable file/MLd Use LIBCD.lib to create a debug single-threaded executable file
/MT Use LIBCMT.lib to create a multi-threaded executable file Executable file
/MTd Use LIBCCMTD.lib to create a debug multi-threaded executable file
Output file
Option effects
/FA
/FA Create list file
Set list file name
/Fd Rename program database file
/Fe Rename executable File
/Fm Create mapping file
/Fo Create object file
/Fp Specify precompiled header file name
/FR < /p>
/FR Generate browser files
/Fx Merge inserted code with source files
Debug
Option effects
/GS Buffer security check
/GZ Same as /RTC1
/RTC Enable runtime error checking
/Wp64 Detect 64-bit portable Sexual issues
/Yd Put complete debugging information in all object files
/Yl Insert PCH references when creating debug libraries
/Z7 Build and C 7.0 compatible debugging information
/Zd Generate line numbers
/Zi Generate complete debugging information
Preprocessor
Option function
/AI Specifies directories to search when resolving file references passed to #using directives
/c Preserves comments during preprocessing
/D Defines constants and macros
/E Copies preprocessor output to standard output
/EP Copies preprocessor output to standard output
/Fl Preprocessor specified Include files
/FU forces the filename to be used as if it had been passed to the #using directive
/I Searches the directory for include files
/ P Write preprocessor output to file
/U Remove predefined macros
/U Remove all predefined macros
/X Ignore standards Include Directory
/ZI Include debugging information in an Edit and Continue-compatible program database
Language
Option Effect
/noBool Deactivates the C++ bool, true and false keywords
/vd Deactivates or enables hidden vtordisp class members
/vmb Use the best base for pointers to members
/vmg Use full generality for pointers to members
/vmm Declare multiple inheritance
/vms Declare single inheritance
/ vmv declares virtual inheritance
/Za disables language extensions
/Zc specifies standard behavior under /Ze
/Ze enables language extensions
/Zg Generate function prototype
/Zl Remove default library name from .obj file
/Zp n Encapsulate structure members
/Zs Check syntax only
Link
Option function
/F Set stack size
/LD Create dynamic link library
/ LDd creates a debugging dynamic link library
/link passes the specified options to LINK
/MD compiles with MSVCRT.lib to create a multi-threaded DLL
/MDd Compile with MSVCRTD.lib to create a debug multi-threaded DLL
/ML Compile with LIBC.lib to create a single-threaded executable
/MLd Compile with LIBCD.lib to create a debug single Threaded executables
/MT Compile with LIBCMT.lib to create multi-threaded executables
/MTd Compile with LIBCMTD.lib to create debug multi-threaded executables
Precompiled headers
Option effects
/Y- Ignore all other precompiled header compiler options in the current build
/Yc Create precompiled headers Compiled headers
/Yd Place complete debugging information in all object files
/Yu Use precompiled headers during build
/YX Automatic Processing precompiled headers
Miscellaneous
Option effects
@ Specify response file
/? List compiler options
/c Compile but not link
/H Limit the length of external (public) names
/HELP List compiler options
/J Change the default char type
/NOLOGO Cancel the display of the login copyright logo
/QI0f Make sure there is no problem with the Pentium 0F command
/QIfdiv FDIV, FPREM, FPTAN Workaround for Intel Pentium microprocessors with defective FPATAN instructions
QIfist cancels the call to the Helper function _ftol when a conversion from a floating point type to an integer is required
/showIncludes in Display a list of all included files during compilation
/Tc
/Tc specifies C source files
/Tp
/Tp specifies C++ Source file
/V Set version string
/w Set warning level
/w Disable all warnings
/Wall Enable all Warnings, including those disabled by default
/WL Enable single-line diagnostics for error messages and warning messages when compiling C++ source code from the command line
/Zm Set the compiler's memory Allocation limits
The CL command line uses the following syntax:
CL [option...] file... [option | file]... [lib...] [@ common
d-file] [/link link-opt...]
The following table explains the meaning of the input items of the CL command
option One or more CL options. Note that all options apply to all specified source files. Options are specified by a forward slash (/) or a dash (–). If an option takes arguments, the option's specification specifies whether spaces are allowed between the option and the argument. Option names (except the /HELP option) are case-sensitive. For more information, see Order of CL Options.
file The name of one or more source files, .obj files, or libraries. CL compiles the source files and passes the names of the .obj files and libraries to the linker. For more information, see CL file name syntax.
lib One or more library names. CL passes these names to the linker.
command-file A file containing multiple options and filenames. For more information, see the CL command file.
link-opt One or more linker options. CL passes these options to the linker.
You can specify any number of options, file names, and library names, as long as the number of characters on the command line does not exceed 1024, a limit specified by the operating system.
CL command file see
Set Compiler Options | Compiler Options
A command file is a text file that contains additional information that you type on the command line Or use the options and filename specified by the CL environment variable. CL accepts compiler command files for use as arguments in the CL environment variable or on the command line. Unlike command line or CL environment variables, command files allow multi-line options and file names.
Options and filenames in the command file will be processed based on the position of the command filename in the CL environment variable or on the command line. However, if the /link option appears in the command file, all options in the remainder of the line will be passed to the linker. Options in later lines of the command file and on the command line after the command file call are still accepted as compiler options.
The command file must not contain CL commands. Each option must begin and end on the same line; you cannot use backslashes (\) to combine options across lines.
The command file is specified with an @ character followed by a file name; the file name can specify an absolute path or a relative path.