[OT] MSVCRx.dll

  • Thread starter Thread starter Lloyd Dupont
  • Start date Start date
L

Lloyd Dupont

I have a gcc program linked against MSVCR70.DLL (and it hsip with it)
Could I recompile it, linked against and shiped it with MSVCR80.DLL ?

I mean does these MSVCRxx.DLL completely self contained? or could they
depend on other (optional) DLL?
 
Lloyd Dupont said:
I have a gcc program linked against MSVCR70.DLL (and it hsip with it)
Could I recompile it, linked against and shiped it with MSVCR80.DLL ?

I mean does these MSVCRxx.DLL completely self contained? or could they
depend on other (optional) DLL?

http://www.dependencywalker.com/
Will show you the dependencies of any DLL.

In all likelyhood you will be able to relink with MSVCR80.dll

You can also use the C/C++/Code Generation/Runtime Library /MT instead of
/MD to statically link the runtime library.

David
 
Back
Top