c++ - Is there a version of the VC++ 2008 Redistributable Package with the DEBUG dlls? -
we have (mainly) c#/wpf application invokes c++ libraries via interop.
for testing purposes (and because of inconsistencies in third party library), distribute debug version or our application on target machine, partially remote debugging.
in case, when doing so, program barfs dreaded 0x800736b1 error loading c++ dll. appears (at least until find next stumbling block) caused not having debug version of vc++ runtime libraries installed on target machine.
is there version of vc++ redistributable package debug libraries, or failing that, there "preferred" way of putting libraries on test machine?
thanks, wts
if target machine under control, may want install visual studio on it. deploy debug version of runtime.
alternatively, copy side-by-side libraries development machine target machine. in %windir%\winsxs
. on dev machine (vs 2008 sp1), reside in following folders:
%windir%\winsxs\x86_microsoft.vc90.debugcrt_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_597c3456 %windir%\winsxs\x86_microsoft.vc90.debugcrt_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_f863c71f %windir%\winsxs\x86_microsoft.vc90.debugcrt_1fc8b3b9a1e18e3b_9.0.30729.4148_x-ww_5d84dd2f %windir%\winsxs\x86_microsoft.vc90.debugmfc_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_2a62a75b %windir%\winsxs\x86_microsoft.vc90.debugmfc_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_c94a3a24 %windir%\winsxs\x86_microsoft.vc90.debugmfc_1fc8b3b9a1e18e3b_9.0.30729.4148_x-ww_2e6b5034 %windir%\winsxs\x86_microsoft.vc90.debugopenmp_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_72b673b0 %windir%\winsxs\x86_microsoft.vc90.debugopenmp_1fc8b3b9a1e18e3b_9.0.30729.4148_x-ww_76bf1c89
Comments
Post a Comment