|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH] tools: fix build after recent xenpaging changes
tools: fix build after recent xenpaging changes
xenpaging now uses pthreads, so must link appropriately.
Signed-off-by: Tim Deegan <Tim.Deegan@xxxxxxxxxx>
diff -r 2633588c2427 tools/xenpaging/Makefile
--- a/tools/xenpaging/Makefile Fri Jun 24 13:03:38 2011 +0100
+++ b/tools/xenpaging/Makefile Fri Jun 24 13:10:34 2011 +0100
@@ -2,7 +2,7 @@ XEN_ROOT=$(CURDIR)/../..
include $(XEN_ROOT)/tools/Rules.mk
CFLAGS += $(CFLAGS_libxenctrl) $(CFLAGS_libxenstore)
-LDLIBS += $(LDLIBS_libxenctrl) $(LDLIBS_libxenstore)
+LDLIBS += $(LDLIBS_libxenctrl) $(LDLIBS_libxenstore) -pthread
POLICY = default
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|