|
|
|
|
|
by Dwedit
407 days ago
|
|
No, linking to a static version of the CRT is a good thing, it cuts out the unused code. If you dynamic link to MSVCRxx/VCRUNTIME, you force the user to download that exact DLL from Microsoft. Dynamic linking to MSVCRT doesn't have that problem, but it's very hard to do in Visual Studio. The only time you really can't static link to the CRT is LGPL compliance? |
|
There's absolutely no reason to statically link CRT in a Win32 app today. Especially not if your goal is to minimize .exe size.