From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:34837) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qz2IU-0002v9-FN for qemu-devel@nongnu.org; Thu, 01 Sep 2011 04:06:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qz2IT-0007gT-Ab for qemu-devel@nongnu.org; Thu, 01 Sep 2011 04:06:50 -0400 Received: from mtagate7.uk.ibm.com ([194.196.100.167]:56280) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qz2IT-0007Zi-23 for qemu-devel@nongnu.org; Thu, 01 Sep 2011 04:06:49 -0400 Received: from d06nrmr1507.portsmouth.uk.ibm.com (d06nrmr1507.portsmouth.uk.ibm.com [9.149.38.233]) by mtagate7.uk.ibm.com (8.13.1/8.13.1) with ESMTP id p8186XYI027247 for ; Thu, 1 Sep 2011 08:06:33 GMT Received: from d06av09.portsmouth.uk.ibm.com (d06av09.portsmouth.uk.ibm.com [9.149.37.250]) by d06nrmr1507.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p8186W3k1892600 for ; Thu, 1 Sep 2011 09:06:32 +0100 Received: from d06av09.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av09.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p8186SpD019969 for ; Thu, 1 Sep 2011 02:06:28 -0600 From: Stefan Hajnoczi Date: Thu, 1 Sep 2011 09:06:13 +0100 Message-Id: <1314864386-14202-3-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1314864386-14202-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1314864386-14202-1-git-send-email-stefanha@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 02/15] 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 Cc: Anthony Liguori , =?UTF-8?q?Llu=C3=ADs?= , =?UTF-8?q?Llu=C3=ADs=20Vilanova?= From: Llu=C3=ADs Helper programs like qemu-ga use tracing primitives, but qemu-timer-commo= n.o (also used by simpletrace.o) is not necessarily included in the linkage l= ine. Signed-off-by: Llu=C3=ADs 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 =3D trace.o ifeq ($(TRACE_BACKEND),simple) trace-obj-y +=3D simpletrace.o -user-obj-y +=3D qemu-timer-common.o +trace-obj-y +=3D qemu-timer-common.o endif endif =20 --=20 1.7.5.4