c++ - msvcp90d.dll is missing msvcr90d.dll -
I had a DLL project on a machine, and it was copied with the newly installed VS2008 in the second. Creates the project, but I can not debug it Dependecy Walker shows that my DLL sees msvcr90d.dll, but msvcp90d.dll does not see the same DLL . But if I open msvcp90d.dll in a separate window, then msvcr90d.dll is seeing msvcp90d.dll . This is clearly some Sax issue, but I do not know how to solve it. I tried several proposed improvements: googling:
- disable incremental link,
- delete and then include manifest creation
- from my document Delete the settings folder \ Visual Studio 2008
None of them works the same in status debug and release both.
have you installed the service pack for VS 2008?
Are you sure that this is the reason why you can not debug? Does anything in your DLL C library (MSVCP 90 DLD) depend on the C library (MSVCRDDDLL)? If nothing is not necessary, then it will not be associated with unnecessary code.
Have you clearly disregarded this library in your linker settings?
Comments
Post a Comment