系统默认调试器设置方法解说
通过改注册表可以解决, 具体操作如下:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug
"Auto"="0"
"Debugger"="\"D:\\ProgramFiles\\MicrosoftVisualStudio\\Common\\MSDev98\\Bin\\msdev.exe\"-p%ld-e%ld"
将上面的路径设置成你的VC6.0的路径即可
自己的为VC6.0调试器"D:\BCTools\Microsoft Visual Studio\Common\MSDev98\Bin\msdev.exe" -p %ld -e %ld
Auto
= 0 的时候,系统会弹出一个对话框,让你在几个调试器中选择(如果你的系统安装了多个调试器的话)
= 1 的时候,系统会自动调用默认调试器
Debugger
默认调试器的路径。
比如windows自带的Dr.Watson : DRWTSN32 -p %ld -e %ld -g
或者是WinDBG: windbg.exe" -p %ld -e %ld -g
Tip:如果想把windbg设置成默认调试器,可以运行windbg.exe -I 命令,windbg会自动完成设置。
"Debugger"="C:\\Program Files\\Common Files\\Microsoft Shared\\VS7Debug\\vs7jit.exe-p %ld -e %ld"
"UserDebuggerHotKey"=dword:00000000
"PreVisualStudio7Debugger"="C:\\Program Files\\Microsoft Visual Studio .NET 2003\\Common7\\IDE\\devenv.exe -p %ld -e %ld -g
页:
[1]