MSVCP90.dll not found?

后端 未结 6 757
南笙
南笙 2021-01-02 08:20

in my project if compile project in release, it asks me MSVCP90.dll.

if it is debug, it does not...

have you ever met such a situation?

and do you kn

相关标签:
6条回答
  • 2021-01-02 08:38

    You probably turned off manifest embedding in your project in release configuration.

    0 讨论(0)
  • 2021-01-02 08:39

    Have you searched your hard disk for the file? You may find it in a directory such as:

    C:\Program Files\Microsoft Visual Studio 9.0\VC\redist\x86\Microsoft.VC90.CRT

    If it's there, copy it to your \windows\system32 directory.

    Also copy msvcm90.dll and msvcr90.dll while you're at it.

    If this is not working then the solution is download and install Microsoft Visual C++ 2008 Redistributable Package. Follow this link for download (cca 1.8 MB):

    http://www.microsoft.com/downloads/thankyou.aspx?familyId=9b2da534-3e03-4391-8a4d-074b9f2bc1bf&displayLang=en

    Check Here for multiple ways of sloving this issue :

    http://pcsupport.about.com/od/findbyerrormessage/a/msvcp90-dll-not-found-missing-error.htm

    0 讨论(0)
  • 2021-01-02 08:46

    Check your project settings. If you're not generating a manifest for your Release build, the DLL will need to be in the System32 directory.

    Also, if your Release and Debug builds are going to the same directory, it could be seeing the Debug manifest, which would point it to the debug version of the DLL. Your best bet is to generate an embedded manifest for all builds.

    0 讨论(0)
  • 2021-01-02 08:51

    There are several files that make Visual C++ Run-time and you can have the same problem with any of them. You might take a look at other questions regarding any of the following files.

    • msvcP90.dll
    • msvcP90d.dll (debug version of msvcP90.dll)
    • msvcR90.dll
    • msvcR90d.dll (debug version of msvcR90.dll)
    0 讨论(0)
  • 2021-01-02 08:58

    I think you need to install Microsoft Visual C++ 2008 Redistributable Package which you can get from here.

    0 讨论(0)
  • 2021-01-02 09:00

    i realized that i already installed Microsoft Visual C++ 2008 Redistributable Package so i just repaired but it did not solved the problem.

    then i looked for the configuration and saw that "Generate Manifest" is "No" in Release when it was "Yes" in Debug.

    so i changed and tried again then it worked.

    i did not know that this configuration may affect like that, (and i dont remember when i changed it)

    anyway.. thanks for your other answers...

    0 讨论(0)
提交回复
热议问题