Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p><code>MSVCP100D.dll</code> is the debug version of <code>MSVCP100.dll</code>. They are the dynamic link libraries that implements the C run-time libraries. This is needed to implement the C++ standard libraries in Visual C++ 2010.</p> <p>The compiler links against <code>MSVCP100D.dll</code> in debug mode. There should be a <code>MSVCP100D.dll</code> on your development machine when you installed the compilers that came with Visual Studio 2010. If this isn't so then something went wrong with the installation.</p> <p>The compiler links against <code>MSVCP100.dll</code> in release mode. If you plan to deploy your application, you need to compile in release mode and distribute the release versions of the binary. Do not distribute the debug versions of the binary.</p> <p>If even after doing that you still get errors, you may need to install the Visual C++ 2010 runtimes.</p> <p>The installers are available to download:</p> <ul> <li><a href="http://www.microsoft.com/download/en/details.aspx?id=8328">Microsoft Visual C++ 2010 SP1 Redistributable Package (x86)</a></li> <li><a href="http://www.microsoft.com/download/en/details.aspx?id=13523">Microsoft Visual C++ 2010 SP1 Redistributable Package (x64)</a></li> </ul> <hr> <p>If you rather not link against the dynamic library, you can statically link the C run-time libraries into your application by specifying the <a href="http://msdn.microsoft.com/en-us/library/2kzt1wy3.aspx"><code>/MT</code></a> compiler switch <a href="http://msdn.microsoft.com/en-us/library/abx4dbyh.aspx">as described here</a>.</p> <p>Note that static linking will increase the size of the application binary, and if the C run-time libraries are updated (e.g. security/performance improvements) the application will not use them unless you recompile the application.</p> <p>I highly recommend that you install the redistributable package anyway since lots of other applications you may use might need the libraries.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload