这听起来很简单,但我无法让它发挥作用。我安装了Windows SDK 7.1并打开了Windows SDK 7.1命令提示符。
我有一个代码test.c,如下所示:
#include <stdio.h>
#include <math.h>
void main()
{
int i;
for(i=1; i<10; i++)
printf("Hello world! This is line %d \n", i);
}
现在我想调试它。我首先用以下方法编译它:
cl test.c /Z7
然后,打开:
mdbg test.exe
接下来发生的事情是:
MDbg (Managed debugger) v4.0.30319.1 (RTMRel.030319-0100) started.
Copyright (C) Microsoft Corporation. All rights reserved.
For information about commands type "help";
to exit program type "quit".
run test.exe
Hello world! This is line 1
Hello world! This is line 2
Hello world! This is line 3
Hello world! This is line 4
Hello world! This is line 5
Hello world! This is line 6
Hello world! This is line 7
Hello world! This is line 8
Hello world! This is line 9
STOP: Process Exited
它直接跑到最后,完全没有停止。我甚至没有机会设置断点......
我该怎么办?
非常感谢你们。
答案 0 :(得分:2)
您正在使用错误的工具来实现此目的。 Mdbg(顾名思义)是一个托管调试器,因此它适用于.NET程序集,并且您正在尝试调试本机应用程序。我建议使用 windbg 或 cdb (如果您更喜欢命令行调试程序)。这两个工具都可以在Windows SDK中免费使用 - 只需安装Debugging Tools for Windows即可。他们也有很好的文档。