From mboxrd@z Thu Jan 1 00:00:00 1970 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 From: =?utf-8?b?TGx1w61z?= Vilanova Date: Mon, 2 Apr 2012 14:49:44 +0200 Message-Id: <20120402124943.4846.20579.stgit@ginnungagap.bsc.es> In-Reply-To: <20120402124931.4846.19978.stgit@ginnungagap.bsc.es> References: <20120402124931.4846.19978.stgit@ginnungagap.bsc.es> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 2/3] configure: Link QEMU against 'liburcu-bp' List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: stefanha@gmail.com, harsh@linux.vnet.ibm.com This library is needed when using 'ust/tracepoint.h'. Signed-off-by: Harsh Prateek Bora Signed-off-by: Llu=C3=ADs 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" =3D "ust"; then int main(void) { return 0; } EOF if compile_prog "" "" ; then - LIBS=3D"-lust $LIBS" + LIBS=3D"-lust -lurcu-bp $LIBS" else echo echo "Error: Trace backend 'ust' missing libust header files"