MSVCP140.dll missing

C++WindowsVisual Studio-2015

C++ Problem Overview


I just developed my first program in C++ and I wanted to show it with one of my friends. Sadly, when he tries to open the exe it gets an error which says "MSVCP140.dll is missing". Why is this issue happening and how can he/I fix it?

C++ Solutions


Solution 1 - C++

Either make your friends download the runtime DLL (@Kay's answer), or compile the app with static linking.

In visual studio, go to Project tab -> properties - > configuration properties -> C/C++ -> Code Generation on runtime library choose /MTd for debug mode and /MT for release mode.

This will cause the compiler to embed the runtime into the app. The executable will be significantly bigger, but it will run without any need of runtime dlls.

Solution 2 - C++

Your friend's PC is missing the runtime support DLLs for your program:

Solution 3 - C++

That usually means that your friend does not have the Microsoft redistributable for Visual C++. I am of course assuming you are using VC++ and not MingW or another compiler. Since your friend does not have VS installed as well there is no guarantee he has the redist installed.

VC++ Distro

Solution 4 - C++

That's probably the C++ runtime library. Since it's a DLL it is not included in your program executable. Your friend can download those libraries from Microsoft.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiondeniskrrView Question on Stackoverflow
Solution 1 - C++David HaimView Answer on Stackoverflow
Solution 2 - C++kayView Answer on Stackoverflow
Solution 3 - C++BlindGarretView Answer on Stackoverflow
Solution 4 - C++Anon MailView Answer on Stackoverflow