Application has failed to start because MSVCP100D.dll was not found, reinstalling app may work

前端 未结 3 785
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-02 01:56

I googled on this and realized there are probably several causes to this so I will describe my scenario.

This happens when my application tries to load a .dll file b

3条回答
  •  失恋的感觉
    2020-12-02 02:20

    If you link dynamically to the MSVC runtime then you need to install that runtime on every machine that will run your app.

    Note that in this case you appear to be linking to the debug version of the runtime, it is not normal to distribute apps linked against the debug version of the runtime.

提交回复
热议问题