[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v2 03/13] hvf: add compilation rules to Makefile
From: |
Stefan Hajnoczi |
Subject: |
Re: [Qemu-devel] [PATCH v2 03/13] hvf: add compilation rules to Makefile.objs |
Date: |
Wed, 30 Aug 2017 11:22:15 +0100 |
User-agent: |
Mutt/1.8.3 (2017-05-23) |
On Wed, Aug 30, 2017 at 03:26:52AM -0500, Sergio Andres Gomez Del Real wrote:
> 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
After this commit:
make[1]: *** No rule to make target 'target/i386/hvf-all.o', needed by
'qemu-system-x86_64'. Stop.
Please structure patch series so that each commit compiles and passes
tests successfully.
This is important so that git-bisect(1) can be used. If some commits
break the build then it's hard to bisect because you need to diagnose
each failure and decide how to bisect around it.
This code change must be included in the same commit that adds hvf-all.o
and hvf-utils/ files.
Stefan
- [Qemu-devel] [PATCH v2 00/13] add support for Hypervisor.framework in QEMU, Sergio Andres Gomez Del Real, 2017/08/30
- [Qemu-devel] [PATCH v2 01/13] hvf: add support for Hypervisor.framework in the configure script, Sergio Andres Gomez Del Real, 2017/08/30
- [Qemu-devel] [PATCH v2 03/13] hvf: add compilation rules to Makefile.objs, Sergio Andres Gomez Del Real, 2017/08/30
- [Qemu-devel] [PATCH v2 07/13] apic: add function to apic that will be used by hvf, Sergio Andres Gomez Del Real, 2017/08/30
- [Qemu-devel] [PATCH v2 08/13] hvf: implement hvf_get_supported_cpuid, Sergio Andres Gomez Del Real, 2017/08/30
- [Qemu-devel] [PATCH v2 06/13] hvf: use new helper functions for put/get xsave, Sergio Andres Gomez Del Real, 2017/08/30
- [Qemu-devel] [PATCH v2 05/13] hvf: add fields to CPUState and CPUX86State; add definitions, Sergio Andres Gomez Del Real, 2017/08/30
- [Qemu-devel] [PATCH v2 10/13] hvf: implement vga dirty page tracking, Sergio Andres Gomez Del Real, 2017/08/30
- [Qemu-devel] [PATCH v2 09/13] hvf: refactor cpuid code, Sergio Andres Gomez Del Real, 2017/08/30