From patchwork Wed Aug 24 19:53:17 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [simple] Include qemu-timer-common.o in trace-obj-y Date: Wed, 24 Aug 2011 09:53:17 -0000 From: =?utf-8?Q?Llu=C3=ADs?= X-Patchwork-Id: 111419 Message-Id: <20110824195317.14304.63305.stgit@ginnungagap.bsc.es> To: qemu-devel@nongnu.org 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