Where is Cordbg?

3

I'm trying to debug a C++ application recently ported from linux, and I'm used to a command-line debugger. I'm not using Visual Studio, rather NMake Makefiles.

I hear cordbg.exe is a command line debugger I should have, but I can't find it. I'm running Windows 10, and I have Visual Studio 2013 and .Net 3.5 installed.

Where is this file? If I don't have it, where can I get it?

Peter Mitrano

Posted 2015-10-07T06:36:04.617

Reputation: 133

Answers

3

Where can I get cordbg.exe?

You build it yourself (it is shipped as one of the sample applications provided with the Microsoft .NET Framework SDK).

The Runtime Debugger helps tools vendors and application developers find and fix bugs in programs that target the .NET Framework common language runtime. This tool uses the runtime Debug API to provide debugging services.

The source code for Cordbg.exe is being shipped as a sample application.

Developers can examine the code to learn how to use the debugging services. Currently, you can only use Cordbg.exe to debug managed code; there is no support for debugging unmanaged code.

Source Runtime Debugger (Cordbg.exe)

enter image description here

Source .NET Framework Tools

DavidPostill

Posted 2015-10-07T06:36:04.617

Reputation: 118 938