From patchwork Mon Apr 2 12:49:44 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Llu=C3=ADs_Vilanova?= X-Patchwork-Id: 150135 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 3F19FB6EE7 for ; Mon, 2 Apr 2012 22:50:11 +1000 (EST) Received: from localhost ([::1]:38212 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SEgi1-0008Is-2s for incoming@patchwork.ozlabs.org; Mon, 02 Apr 2012 08:50:09 -0400 Received: from eggs.gnu.org ([208.118.235.92]:59528) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SEghb-0007iR-5Q for qemu-devel@nongnu.org; Mon, 02 Apr 2012 08:49:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SEghZ-0006OY-Ez for qemu-devel@nongnu.org; Mon, 02 Apr 2012 08:49:42 -0400 Received: from roura.ac.upc.edu ([147.83.33.10]:37530 helo=roura.ac.upc.es) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SEghZ-0006OB-4p for qemu-devel@nongnu.org; Mon, 02 Apr 2012 08:49:41 -0400 Received: from gw.ac.upc.edu (gw.ac.upc.es [147.83.30.3]) by roura.ac.upc.es (8.13.8/8.13.8) with ESMTP id q32CnaRU015616; Mon, 2 Apr 2012 14:49:36 +0200 Received: from localhost (unknown [84.88.53.92]) by gw.ac.upc.edu (Postfix) with ESMTP id 302FD2D0017; Mon, 2 Apr 2012 14:49:36 +0200 (CEST) From: =?utf-8?b?TGx1w61z?= Vilanova To: qemu-devel@nongnu.org Date: Mon, 2 Apr 2012 14:49:44 +0200 Message-Id: <20120402124943.4846.20579.stgit@ginnungagap.bsc.es> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <20120402124931.4846.19978.stgit@ginnungagap.bsc.es> References: <20120402124931.4846.19978.stgit@ginnungagap.bsc.es> User-Agent: StGit/0.16 MIME-Version: 1.0 X-MIME-Autoconverted: from 8bit to quoted-printable by roura.ac.upc.es id q32CnaRU015616 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 147.83.33.10 Cc: stefanha@gmail.com, harsh@linux.vnet.ibm.com Subject: [Qemu-devel] [PATCH 2/3] configure: Link QEMU against 'liburcu-bp' 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 This library is needed when using 'ust/tracepoint.h'. Signed-off-by: Harsh Prateek Bora Signed-off-by: LluĂ­s Vilanova --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/configure index c7be13d..30591b0 100755 --- a/configure +++ b/configure @@ -2672,7 +2672,7 @@ if test "$trace_backend" = "ust"; then int main(void) { return 0; } EOF if compile_prog "" "" ; then - LIBS="-lust $LIBS" + LIBS="-lust -lurcu-bp $LIBS" else echo echo "Error: Trace backend 'ust' missing libust header files"