From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:41803) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwcDc-0000vK-DN for qemu-devel@nongnu.org; Thu, 25 Aug 2011 11:51:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwcDb-0001OR-Hp for qemu-devel@nongnu.org; Thu, 25 Aug 2011 11:51:48 -0400 Received: from mailout-de.gmx.net ([213.165.64.23]:36384) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1QwcDb-0001N1-3x for qemu-devel@nongnu.org; Thu, 25 Aug 2011 11:51:47 -0400 From: =?utf-8?b?TGx1w61z?= Date: Thu, 25 Aug 2011 17:51:36 +0200 Message-ID: <20110825155136.19177.40244.stgit@ginnungagap.bsc.es> In-Reply-To: <20110825155128.19177.80104.stgit@ginnungagap.bsc.es> References: <20110825155128.19177.80104.stgit@ginnungagap.bsc.es> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v6 01/14] [simple] Include qemu-timer-common.o in trace-obj-y List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, chouteau@adacore.com Cc: stefanha@gmail.com Helper programs like qemu-ga use tracing primitives, but qemu-timer-common.o (also used by simpletrace.o) is not necessarily included in the linkage line. This currently produces a warning when linking the *-softmmu programs. Signed-off-by: LluĂ­s Vilanova --- Makefile.objs | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile.objs b/Makefile.objs index d1f3e5d..44d7238 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -380,7 +380,7 @@ else trace-obj-y = trace.o ifeq ($(TRACE_BACKEND),simple) trace-obj-y += simpletrace.o -user-obj-y += qemu-timer-common.o +trace-obj-y += qemu-timer-common.o endif endif