From 845e16071c463a16a9c7726abf092909c3c6789d Mon Sep 17 00:00:00 2001 From: Christian Babeux Date: Fri, 2 Nov 2012 15:04:02 -0400 Subject: [PATCH] Fix: Remove dependency to urcu-cds in tools tests The -lurcu-cds link flag is not mandatory to link any of the tests. Also, adding this flag can cause multiple symbol definition errors when linking statically because the libhashtable contains symbol names that are also present in urcu-cds. Signed-off-by: Christian Babeux Signed-off-by: David Goulet --- tests/tools/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tools/Makefile.am b/tests/tools/Makefile.am index 56eda3ada..cd7ff3292 100644 --- a/tests/tools/Makefile.am +++ b/tests/tools/Makefile.am @@ -1,7 +1,7 @@ SUBDIRS = streaming filtering health AM_CFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src -I$(top_srcdir)/tests -g -Wall -AM_LDFLAGS = -lurcu -lurcu-cds +AM_LDFLAGS = -lurcu EXTRA_DIST = runall.sh -- 2.34.1