Skip to content

Releases: ispras/qemu

v2.7.50-windbg

12 Apr 12:03
Compare
Choose a tag to compare

WinDbg is a multipurpose debugger for the Microsoft Windows computer operating system, distributed by Microsoft. Recent versions of WinDbg have been and are being distributed as part of the free Debugging Tools for Windows suite.


How to start debugging QEMU using WinDbg:

  • Run QEMU with next option:
    -windbg pipe:<name>
    QEMU will start and pause for waiting WinDbg connection.
  • Run WinDbg with next options:
    -b -k com:pipe,baud=115200,port=\\.\pipe\<name>,resets=0
  • Wait for debugger connect to kernel.

You can add Symbol Search Path in WinDbg such as
srv*c:\tmp*http://msdl.microsoft.com/download/symbols

In attached file you will find qemu executable.

First plugins release

12 Apr 10:42
Compare
Choose a tag to compare

That's the first release of plugins mechanism. In attached file you will find qemu executable and plugins' libraries.

To write your own plugins you should get the sources and use docs/plugins.txt (same on Wiki) and existing plugins as a reference.