[OT] MSVCRx.dll

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?
 
D

David Browne

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top