Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions src/goto-cc/ms_cl_cmdline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -397,16 +397,18 @@ const char *ms_cl_prefixes[]=
"Y", // - disable all PCH options
"Zm", // <n> max memory alloc (% of default)
"Wp64", // enable 64 bit porting warnings
"LD", // Create .DLL
"LDd", // Create .DLL debug library
"LN", // Create a .netmodule
"LD", // Create .DLL
"LDd", // Create .DLL debug library
"LN", // Create a .netmodule
"F", // <num> set stack size
"link", // [linker options and libraries]
"MD", // link with MSVCRT.LIB
"MT", // link with LIBCMT.LIB
"MDd", // link with MSVCRTD.LIB debug lib
"MTd", // link with LIBCMTD.LIB debug lib
"std", // specify C++ language standard
"link", // [linker options and libraries]
"MD", // link with MSVCRT.LIB
"MT", // link with LIBCMT.LIB
"MDd", // link with MSVCRTD.LIB debug lib
"MTd", // link with LIBCMTD.LIB debug lib
"std", // specify C++ language standard
"sdl", // Enable Additional Security Checks
"diagnostics", // unknown
nullptr
};

Expand Down