Am 21.08.2013 11:11, schrieb Paolo Bonzini: > Still, I must say merging Xen has given us zero headaches. It's taken a > while, but (at least from the QEMU project's POV) the wait has been > worthwhile. > > I would hope that HAXN support would be almost as easy as adding > haxn-all.c and haxn-stub.c files, and a few small changes to cpus.c and > vl.c. > > Paolo
A first version which integrates HAXM in QEMU's build needs these changes: configure | 13 + include/sysemu/hax.h | 50 ++ target-i386/Makefile.objs | 2 + target-i386/cpu.h | 4 + target-i386/hax-all.c | 1080 +++++++++++++++++++++++++++++++++++++++++++ target-i386/hax-darwin.c | 322 +++++++++++++ target-i386/hax-darwin.h | 86 ++++ target-i386/hax-i386.h | 93 ++++ target-i386/hax-interface.h | 418 +++++++++++++++++ target-i386/hax-windows.c | 528 +++++++++++++++++++++ target-i386/hax-windows.h | 68 +++ vl.c | 6 +- (stub file(s) still missing, code completely untested, maybe hax-all.c should be moved) Regards, Stefan