[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v3 08/14] hvf: add compilation rules to Makefile.obj
From: |
Sergio Andres Gomez Del Real |
Subject: |
[Qemu-devel] [PATCH v3 08/14] hvf: add compilation rules to Makefile.objs |
Date: |
Mon, 4 Sep 2017 22:54:51 -0500 |
This commit adds to target/i386/Makefile.objs the necessary rules so
that the new files for hvf are compiled by the build system.
It also adds handling of the -enable-hvf argument in the main function
in vl.c.
Signed-off-by: Sergio Andres Gomez Del Real <address@hidden>
---
target/i386/Makefile.objs | 1 +
1 file changed, 1 insertion(+)
diff --git a/target/i386/Makefile.objs b/target/i386/Makefile.objs
index 6a26e9d9f0..0bef89c099 100644
--- a/target/i386/Makefile.objs
+++ b/target/i386/Makefile.objs
@@ -12,4 +12,5 @@ obj-$(CONFIG_HAX) += hax-all.o hax-mem.o hax-windows.o
endif
ifdef CONFIG_DARWIN
obj-$(CONFIG_HAX) += hax-all.o hax-mem.o hax-darwin.o
+obj-$(CONFIG_HVF) += hvf-utils/ hvf-all.o
endif
--
2.14.1
- [Qemu-devel] [PATCH v3 00/14] add support for Hypervisor.framework in QEMU, Sergio Andres Gomez Del Real, 2017/09/04
- [Qemu-devel] [PATCH v3 09/14] hvf: use new helper functions for put/get xsave, Sergio Andres Gomez Del Real, 2017/09/04
- [Qemu-devel] [PATCH v3 10/14] hvf: implement hvf_get_supported_cpuid, Sergio Andres Gomez Del Real, 2017/09/04
- [Qemu-devel] [PATCH v3 11/14] hvf: refactor cpuid code, Sergio Andres Gomez Del Real, 2017/09/04
- [Qemu-devel] [PATCH v3 12/14] hvf: implement vga dirty page tracking, Sergio Andres Gomez Del Real, 2017/09/04
- [Qemu-devel] [PATCH v3 13/14] hvf: refactor event injection code for hvf, Sergio Andres Gomez Del Real, 2017/09/04
- [Qemu-devel] [PATCH v3 14/14] hvf: inject General Protection Fault when vmexit through vmcall, Sergio Andres Gomez Del Real, 2017/09/04
- [Qemu-devel] [PATCH v3 06/14] hvf: handle fields from CPUState and CPUX86State, Sergio Andres Gomez Del Real, 2017/09/04