From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:53699) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qyo1v-0000XU-Ug for qemu-devel@nongnu.org; Wed, 31 Aug 2011 12:52:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qyo1u-0000XT-Tz for qemu-devel@nongnu.org; Wed, 31 Aug 2011 12:52:47 -0400 Received: from mailout-de.gmx.net ([213.165.64.22]:50883) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1Qyo1u-0000XD-Gu for qemu-devel@nongnu.org; Wed, 31 Aug 2011 12:52:46 -0400 From: =?utf-8?b?TGx1w61z?= Date: Wed, 31 Aug 2011 18:52:20 +0200 Message-ID: <20110831165220.4389.93995.stgit@ginnungagap.bsc.es> In-Reply-To: <20110831165206.4389.17250.stgit@ginnungagap.bsc.es> References: <20110831165206.4389.17250.stgit@ginnungagap.bsc.es> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v8 02/14] build: [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. 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