【原创】VS2010 C++ Debug 出现 "SXS: RtlCreateActivati...

     在 VS2010 中通过 Debug 模式调试代码时,出现如下输出信息:

“abc.exe”: 已加载“D:\demo_abc\prj_win32\Debug\abc.exe”,已加载符号。
“abc.exe”: 已加载“C:\WINDOWS\system32\ntdll.dll”,Cannot find or open the PDB file
“abc.exe”: 已加载“C:\WINDOWS\system32\kernel32.dll”,Cannot find or open the PDB file
“abc.exe”: 已加载“D:\demo_abc\prj_win32\Debug\libxxx.dll”,已加载符号。
SXS: RtlCreateActivationContext() failed 0xc000000d
LDR: LdrpWalkImportDescriptor() failed to probe D:\demo_abc\prj_win32\Debug\libxxx.dll for its manifest, ntstatus 0xc000000d
调试器:: 在进程加载过程中引发了未处理的无法继续的异常

     具体调用为,abx.exe 调用动态库 libxxx.dll 。调用后一直会出现错误,如下:

应用程序正常初始化(0xc000000d)失败。请单击“确定”,终止应用程序。

     解决办法:在生成 dll 的时候需要将禁止生成清单文件。

你可能感兴趣的:(C++,debug,VS2010)