Linking C runtime
-
Is there any way to use VS2003 or VS2005 for development and still link with VS6's C runtime libraries? thanks!
-
Is there any way to use VS2003 or VS2005 for development and still link with VS6's C runtime libraries? thanks!
why do you want to link with vc6 runtime, is there any specific reason do it? -Saurabh
-
why do you want to link with vc6 runtime, is there any specific reason do it? -Saurabh
Saurabh.Garg wrote:
why do you want to link with vc6 runtime, is there any specific reason do it?
Oh yeah, so that I dont have to expect msvcrt7 dlls on the end user system. thanks!
-
Is there any way to use VS2003 or VS2005 for development and still link with VS6's C runtime libraries? thanks!
-
Saurabh.Garg wrote:
why do you want to link with vc6 runtime, is there any specific reason do it?
Oh yeah, so that I dont have to expect msvcrt7 dlls on the end user system. thanks!
The only way I'd expect this to work is if you disabled exceptions, disabled /GS support, used /NODEFAULTLIB, provided your own mainCRTStartup, and removed most use of the new CRTs. But if you've done all of this, you may as well static link, to remove all dependence on any CRT DLLs.