View Single Post
Re: M$ Visual C++ 2005 Express compilation settings
Old
  (#4)
jeefo
путинхуйлоебаное
 
jeefo's Avatar
 
Status: Offline
Posts: 453
Join Date: Nov 2005
Location: Saint-Petersburg
Default Re: M$ Visual C++ 2005 Express compilation settings - 15-03-2006

Because when you using /MT (M$VC) switch, the program linking against STATIC version of LIBCMT.LIB, thats give output binary to be more huge. While mingw links your program against non-static library (msvcrt.dll). M$VC can also links program against non-static library, but uses not msvcrt.dll, but msvcr80.dll, so output binary can only work on machine that have M$VC 8.0 runtime libraries installed.
  
Reply With Quote