使用mdbg调试Windows SDK 7.1中的简单C代码



这听起来很简单,但我就是无法让它工作。我安装了Windows SDK 7.1并打开了Windows SDK 7.1Command Prompt。

我有一个代码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

它直接跑到了终点,一点也不停。我甚至没有机会设置断点。。。

我该怎么办?

非常感谢大家。

您为此目的使用了错误的工具。Mdbg(顾名思义)是一个托管的调试器,因此它可以与.NET程序集一起使用,并且您正在尝试调试本机应用程序。我建议使用windbgcdb(如果您更喜欢命令行调试器)。这两个工具在Windows SDK中都是免费的-只需安装Windows调试工具即可。他们也有很好的文档。

相关内容

  • 没有找到相关文章

最新更新