missing export:MSVCRTD.DLL
-
Hi friends, I built an MFC project in win98 machine, vc6.0. I could run my program. Now I want to run this program in another machine without loading VC++ in that. What I did I copied the necessary dlls into that system manually and tried to run my exe. I am getting this error: "The xxx.exe file is linked to missing export:MSVCRTD.DLL:chkesp" and "A device attached to the system is not functioning". What does it mean? can anybody help me? Thanks; satya:confused:
-
Hi friends, I built an MFC project in win98 machine, vc6.0. I could run my program. Now I want to run this program in another machine without loading VC++ in that. What I did I copied the necessary dlls into that system manually and tried to run my exe. I am getting this error: "The xxx.exe file is linked to missing export:MSVCRTD.DLL:chkesp" and "A device attached to the system is not functioning". What does it mean? can anybody help me? Thanks; satya:confused:
You are trying to run a debug build. You are legally not allowed to redistribute msvcrtd.dll, and therefore can't really distribute a debug build unless you link statically to the CRT (libcd.lib).
-
Hi friends, I built an MFC project in win98 machine, vc6.0. I could run my program. Now I want to run this program in another machine without loading VC++ in that. What I did I copied the necessary dlls into that system manually and tried to run my exe. I am getting this error: "The xxx.exe file is linked to missing export:MSVCRTD.DLL:chkesp" and "A device attached to the system is not functioning". What does it mean? can anybody help me? Thanks; satya:confused:
hi, Basically, this error means that something looking for of MSVCRTD.DLL (the MicroSoft Visual C RunTime Dynamic Link Library) is finding a different (probably older) version/ or it is absent. The version it is finding does not have the all the exports (places that things calling the DLL can enter by) that the version it wants has. Regards, Sharad Ganesh