vote up 2 vote down star
2

Hello,

I have a problem with Visual C++ 2008. I have installed opencv and I've created a new program and I build it with no errors. However, it complains about not finding MSVCR90D.dll when debugging. In release mode there is no problem at all.

I do have MSVCR90D.dll in one of Winsxs folders. Does anyone know a get-around to this problem? Is this a known bug?

Gerard

flag
I have the same problem. As of 18-07-2009 none of given answers really answers the question. That's why I asked it again here stackoverflow.com/questions/1150464 – Piotr Dobrogost Jul 19 at 18:10

8 Answers

vote up 3 vote down

There are several potential solutions described in this forum post. See if any of those help.

One hint from there:

Go to %System Drive%\Windows\WinSxS and look for the directory x86_Microsoft.VC90.DebugCRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_597c3456

If this doesn't exist, go to the VS setup and make sure you have all libraries installed under VC++.

And another one:

I had the same problem, but fixed it by turning off incremental linking (Project properties... Linker... General... Enable Incremental Linking: No).

Confirming the last one:

Projects built on a software-mounted drive complain about a missing MSVCR90D.dll. The problem goes away if you turn off incremental linking (and rebuild all, of course).

link|flag
1  
Thank you very much for your help. It worked!! However, can I have any problem for setting off the incremental linking? What difference does it make? Thank you again – Mat Oct 20 '08 at 23:18
From MSDN: An incrementally linked program is functionally equivalent to a program that is nonincrementally linked. This is the important point. Read more at msdn.microsoft.com/en-us/library/…. – smink Oct 21 '08 at 8:29
Turned off incremental linking (OGRE3D) and it worked. Thanks +1 – Brock Woolf Aug 13 at 15:12
vote up 0 vote down

This is one of the reasons that I statically link; bigger EXEs but I have never had a dependency issue like this before. Probably worth a question in itself though...

link|flag
"Probably worth a question in itself though" While I disagree on the viewpoint you expressed, I agree fully with your conclusion... ^_^ – paercebal Oct 20 '08 at 15:54
vote up 1 vote down

Troublehooting DLL problems is a lot easier with Dependency Walker . It allows you to profile your application, catching both DLLs loaded at startup and DLLs loaded later. It will spit out a lot of messages related to the loading of DLLs, or the failure to load them. It also understands SxS loading of DLLs.

You can pass an EXE as a argument to Depends.EXE, and it will profile that app. This can be combined with most IDEs. For instance, in Visual Studio you can set the "Command for Debugging". By default, that's your own EXE. Change it to depends.EXE, and set the command arguments to (at least) /pb your.debug.exe.

link|flag
vote up -1 vote down

hello buddies even i had the same prob missing msvcr90d.dll... and i did switch tat incremental linking to off..and it did wrk out.

but i want to know what this incremental linking is all about????

will i face any prob regardin this by switchin it offf,in what cases it would be a prob

kindly help me out!!!!!!!!!!!!

link|flag
vote up 1 vote down

Having the same problem I found a post that lead me to the debug DLLs in the VS9.0 install. For the default install they were in: C:\Program Files\Microsoft Visual Studio 9.0\VC\redist\Debug_NonRedist\x86\Microsoft.VC90.DebugCRT.

There are three DLLs and a manifest file. You can add these to your System32 directory, add the directory to your PATH environment variable or copy the files to same directory as your executable when debugging.

Incremental linking speeds up your builds (the linker only re-links libs that have changed instead of re-linking the entire project). It otherwise has no effect on the build output. For a large project I would not recommend turning off incremental linking.

link|flag
This solution worked for me. – iferrorthrownewbrick Oct 20 at 17:38
vote up 0 vote down

None of given answers really gives answer to the question.

All of them point to different workarounds but don't explain the true cause of the error and how to fix it. Hoping for the wright answer I asked this question again here.

link|flag
vote up 0 vote down

I can't give a definitive solution, but here are some helpful links:

And of course, there's a lot more on MSDN if you follow the links.

link|flag
vote up 0 vote down

I had the problem:

Could not load file or assembly 'AudioInterface, Version=1.0.3548.29920, Culture=neutral, PublicKeyToken=null' or one of its dependencies. This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. (Exception from HRESULT: 0x800736B1)

AudioInterface was the name of my C++ project.

Switching to "Release" config, everything worked.

I tracked it to lack of the manifest file alongside my DLL, which I further tracked to having an Assembly Identity set. (Properties > Manifest Tool > General > Assembly Identity)

I removed this setting, and the manifest dropped in the right place, and everything worked.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.