From patchwork Thu Aug 25 19:17:38 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?Q?Llu=C3=ADs?= X-Patchwork-Id: 111641 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 4BBE0B6F77 for ; Fri, 26 Aug 2011 05:18:10 +1000 (EST) Received: from localhost ([::1]:54516 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwfRH-0006VX-Ci for incoming@patchwork.ozlabs.org; Thu, 25 Aug 2011 15:18:07 -0400 Received: from eggs.gnu.org ([140.186.70.92]:46966) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwfR0-00064E-QY for qemu-devel@nongnu.org; Thu, 25 Aug 2011 15:17:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwfQz-000437-Ai for qemu-devel@nongnu.org; Thu, 25 Aug 2011 15:17:50 -0400 Received: from mailout-de.gmx.net ([213.165.64.22]:54813) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1QwfQy-00042w-KH for qemu-devel@nongnu.org; Thu, 25 Aug 2011 15:17:49 -0400 Received: (qmail invoked by alias); 25 Aug 2011 19:17:47 -0000 Received: from unknown (EHLO localhost) [84.88.53.92] by mail.gmx.net (mp046) with SMTP; 25 Aug 2011 21:17:47 +0200 X-Authenticated: #12333383 X-Provags-ID: V01U2FsdGVkX1+XjYBftgGXNWGpL9ehfM6YVm2JyCJ9JidXFegRAu 8evDeX5sWVgWhJ To: qemu-devel@nongnu.org, chouteau@adacore.com From: =?utf-8?b?TGx1w61z?= Date: Thu, 25 Aug 2011 21:17:38 +0200 Message-ID: <20110825191738.1413.5446.stgit@ginnungagap.bsc.es> In-Reply-To: <20110825191731.1413.26838.stgit@ginnungagap.bsc.es> References: <20110825191731.1413.26838.stgit@ginnungagap.bsc.es> User-Agent: StGit/0.15 MIME-Version: 1.0 X-Y-GMX-Trusted: 0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 213.165.64.22 Cc: stefanha@gmail.com Subject: [Qemu-devel] [PATCH v7 01/13] [simple] Include qemu-timer-common.o in trace-obj-y X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@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