Programming

Avoiding the MSVCR100.dll, MSVCP100D.dll, or MSVCR100D.dll is missing error

steloflute 2012. 6. 15. 14:15
http://www.rhyous.com/2010/09/16/avoiding-the-msvcr100-dll-or-msvcr100d-dll/

 

Statically Linking the DLLs

Make sure you resolve it for both Release and Debug. The steps are slightly different.

Release

  1. In Visual Studio, I went to the project Properties.
  2. I changed my Configuration to Release.
  3. I went under Configuration Properties | C/C++ | Code Generation
  4. Look at the Runtime Library setting. It is set to this: Multi-threaded DLL (/MD)
    Change it to this: Multi-threaded (/MT)
  5. Rebuild.

 

 

'Programming' 카테고리의 다른 글

(Python) 2 raised to the power of 100  (0) 2012.06.15
(C++) Environment Variable  (0) 2012.06.15
웹에서 마우스 오른쪽 해제  (0) 2012.06.15
yield (C# Reference)  (0) 2012.06.15
C to Go  (0) 2012.06.15