I'm building a dll statically linked against the c runtime libraries. Why then does it require MSVCR71.dll at runtime?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
You may be linking against the LIB import library for the DLL - check you are using linker option http://msdn.microsoft.com/en-us/library/abx4dbyh(v=VS.90).aspx MSVCR71.dll doesn't look like the correct version of the runtime for VS2008. Are you linking against any other third party libraries that require the older runtime? |
|||
|
|