From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60457) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dmyLV-0002LQ-1U for qemu-devel@nongnu.org; Wed, 30 Aug 2017 04:27:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dmyLU-0000Hx-CK for qemu-devel@nongnu.org; Wed, 30 Aug 2017 04:27:33 -0400 Received: from mail-ua0-x243.google.com ([2607:f8b0:400c:c08::243]:37501) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dmyLU-0000Hm-8e for qemu-devel@nongnu.org; Wed, 30 Aug 2017 04:27:32 -0400 Received: by mail-ua0-x243.google.com with SMTP id 104so2350373uas.4 for ; Wed, 30 Aug 2017 01:27:32 -0700 (PDT) From: Sergio Andres Gomez Del Real Date: Wed, 30 Aug 2017 03:26:52 -0500 Message-Id: <20170830082702.3011-4-Sergio.G.DelReal@gmail.com> In-Reply-To: <20170830082702.3011-1-Sergio.G.DelReal@gmail.com> References: <20170830082702.3011-1-Sergio.G.DelReal@gmail.com> Subject: [Qemu-devel] [PATCH v2 03/13] hvf: add compilation rules to Makefile.objs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Sergio Andres Gomez Del Real 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 --- 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