From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:55201) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SF1D6-0007S2-BW for qemu-devel@nongnu.org; Tue, 03 Apr 2012 06:43:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SF1Cv-0002Fe-Dg for qemu-devel@nongnu.org; Tue, 03 Apr 2012 06:43:34 -0400 Received: from e06smtp14.uk.ibm.com ([195.75.94.110]:58881) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SF1Cv-0002FC-5T for qemu-devel@nongnu.org; Tue, 03 Apr 2012 06:43:25 -0400 Received: from /spool/local by e06smtp14.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 3 Apr 2012 11:43:21 +0100 Received: from d06av02.portsmouth.uk.ibm.com (d06av02.portsmouth.uk.ibm.com [9.149.37.228]) by d06nrmr1507.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q33AgxmC2625782 for ; Tue, 3 Apr 2012 11:42:59 +0100 Received: from d06av02.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av02.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q33AgwNu016652 for ; Tue, 3 Apr 2012 04:42:59 -0600 From: Stefan Hajnoczi Date: Tue, 3 Apr 2012 11:42:45 +0100 Message-Id: <1333449767-16410-7-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1333449767-16410-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1333449767-16410-1-git-send-email-stefanha@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 6/8] configure: Link QEMU against 'liburcu-bp' List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Harsh Prateek Bora , qemu-devel@nongnu.org, Stefan Hajnoczi , =?UTF-8?q?Llu=C3=ADs=20Vilanova?= From: Lluís Vilanova This library is needed when using 'ust/tracepoint.h'. Signed-off-by: Harsh Prateek Bora Signed-off-by: Lluís Vilanova Signed-off-by: Stefan Hajnoczi --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/configure index c0a542b..319355b 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" -- 1.7.9.1