From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59112) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScXLJ-0006X8-OH for qemu-devel@nongnu.org; Thu, 07 Jun 2012 03:41:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ScXLC-0005uJ-Na for qemu-devel@nongnu.org; Thu, 07 Jun 2012 03:41:17 -0400 Received: from mail-pz0-f45.google.com ([209.85.210.45]:45957) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScXLC-0005e1-Es for qemu-devel@nongnu.org; Thu, 07 Jun 2012 03:41:10 -0400 Received: by mail-pz0-f45.google.com with SMTP id v2so544822dad.4 for ; Thu, 07 Jun 2012 00:41:09 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Thu, 7 Jun 2012 09:39:52 +0200 Message-Id: <1339054814-20939-8-git-send-email-pbonzini@redhat.com> In-Reply-To: <1339054814-20939-1-git-send-email-pbonzini@redhat.com> References: <1339054814-20939-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH v3 07/29] dump: do not compile dump.o for user-mode emulation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: anthony@codemonkey.ws It is not needed, because the monitor is not included. Cc: Wen Congyang Signed-off-by: Paolo Bonzini --- Makefile.target | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile.target b/Makefile.target index 67d5f3e..f1ec554 100644 --- a/Makefile.target +++ b/Makefile.target @@ -147,6 +147,7 @@ obj-y += memory.o savevm.o cputlb.o obj-y += memory_mapping.o obj-$(CONFIG_HAVE_GET_MEMORY_MAPPING) += arch_memory_mapping.o obj-$(CONFIG_HAVE_CORE_DUMP) += arch_dump.o +obj-y += dump.o LIBS+=-lz QEMU_CFLAGS += $(VNC_TLS_CFLAGS) @@ -196,8 +197,6 @@ obj-y += $(addprefix ../, $(trace-obj-y)) endif # CONFIG_SOFTMMU -obj-y += dump.o - ifndef CONFIG_LINUX_USER ifndef CONFIG_BSD_USER # libcacard needs qemu-thread support, and besides is only needed by devices -- 1.7.10.1