If the C++ runtime msvcr80.dll is missing from a compiled library, is there any way to determine which version was used to create the library or to get it to run on a later version of msvcr80.dll?
|
1
|
|
|
|
|
|
The VC80 SP1 CRT redistributable package will install both the RTM and SP1 versions of the C runtime into Also, to find out exactly what CRT version (e.g. RTM vs. SP1) is needed by a binary that was built with VC8 or VC9, you can extract the manifest:
Look for something like this:
My executable requires CRT version 9.0.21022.8. This version number is also embedded in the
|
||
|
|
|
Dependency Walker will help you answer this question. |
||
|
|
|
|
If you're authoring and distributing the mentioned DLL, consider using a merge module for Visual C++ 8.0 CRT as part of your installer. I noticed that there is a new mt.exe tool and new Visual C++ CRT in Windows SDK 6.1. I use the merge module as a prerequisite in the InstallShield 12 installer with great success. |
||
|
|
