Windows 7 中命令提示符处的 DEBUG 实用程序

发布于 2024-11-09 06:13:37 字数 234 浏览 0 评论 0原文

我在安装了 Windows 7 的计算机上编译了一些 C 代码。我想在命令提示符下调试可执行文件。我可以进入调试实用程序并显示段,但是当我尝试使用 G 命令运行可执行文件时,我收到消息“此程序无法在 DOS 模式下运行。”。

即使您安装了 Windows,处于命令提示符状态是否意味着您处于 DOS 模式?

在命令提示符下运行的 DEBUG 实用程序是否仅运行 16 位 DOS 可执行文件,而不运行 32 位可执行文件?

I compiled some C code on my computer that has windows 7 installed. I wanted to debug the executable at command prompt. I could enter the debug utility and display the segments but when I tried to run the executable with G command, I got the message "This program cannot be run in DOS mode.".

Does being at command prompt mean that you are in DOS mode, even if you have windows installed?

Does the DEBUG utility that runs at command prompt only runs 16-bit DOS executables, not 32-bit ones?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倥絔 2024-11-16 06:13:37

Wikipedia 上了解有关调试程序的信息。它不是您应该用来调试 C 代码的工具。

Windows 上不再有 16 位兼容软件。如果您正在寻找调试器,请查看Windows 调试工具。该软件包将为您提供一套调试工具,例如 ntsd、cdb(控制台调试器)、WinDBG(围绕 ntsd 的 GUI)。好的 Windbg 教程位于此处

还有 Visual Studio Express(Visual Studio 的免费版本),它具有一套很好的 C 代码调试器。

Read about the debug program on Wikipedia. It is not a tool you should use to debug C code.

There is no 16 bit compatible software on Windows anymore. If you are looking for debuggers look at Debugging tools for Windows. This package will give you a suite of debugging tools like ntsd, cdb (console debuggers), WinDBG (GUI around ntsd). Good windbg tutorial is here.

There is also the Visual Studio Express (free version of Visual Studio) that has good set of debuggers for C code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文