C COMPILER OPTIONS -OPTIMIZATION- /O1 minimize space /Op[-] improve floating-pt consistency /O2 maximize speed /Os favor code space /Oa assume no aliasing /Ot favor code speed /Ob inline expansion (default n=0) /Ow assume cross-function aliasing /Od disable optimizations (default) /Ox maximum opts. (/Ogityb1 /Gs) /Og enable global optimization /Oy[-] enable frame pointer omission /Oi enable intrinsic functions -CODE GENERATION- /G3 optimize for 80386 /Ge enable stack checking calls /G4 optimize for 80486 /Gs[num] disable stack checking calls /G5 optimize for Pentium /Gf enable string pooling /GB optimize for blended model (default) /Gy separate functions for linker /Gd __cdecl calling convention /Gh enable hook function call /Gr __fastcall calling convention /GX- disable C++ EH (default) /Gz __stdcall calling convention /GX enable C++ EH -OUTPUT FILES- /Fa[file] name assembly listing file /Fo name object file /FA[sc] configure assembly listing /Fp name precompiled header file /Fd[file] name .PDB file /Fr[file] name source browser file /Fe name executable file /FR[file] name extended .SBR file /Fm[file] name map file -PREPROCESSOR- /C don't strip comments /FI name forced include file /D{=|#} define macro /U remove predefined macro /E preprocess to stdout /u remove all predefined macros /EP preprocess to stdout, no #line /I add to include search path /P preprocess to file /X ignore "standard places" -LANGUAGE- /vd{0|1} disable/enable vtordisp /Za disable extensions (implies /Op) /vm type of pointers to members /Ze enable extensions (default) /Zi prepare for debugging (CodeView) /Zg generate function prototypes /Z7 C7 style CodeView information /Zl omit default library name in .OBJ /Zd line number information /Zs syntax check only /Zp[n] pack structs on n-byte boundary -MISCELLANEOUS- /?, /help print this help message /w disable all warnings /c compile only, no link /W set warning level (default n=1) /H max external name length /WX treat warnings as errors /J default char type is unsigned /Yc[file] create .PCH file /nologo suppress copyright message /Yd put debug info in every .OBJ /Tc compile file as .c /Yu[file] use .PCH file /Tp compile file as .cpp /YX[file] automatic .PCH /V set version string /Zn turn off SBRPACK for .SBR files -LINKING- /MD link with MSVCRT.LIB /F set stack size /ML link with LIBC.LIB /LD Create .DLL /MT link with LIBCMT.LIB /link [linker options and libraries]