diff mbox

kvm tools: build rbtree.o from source

Message ID 1305786988-16120-1-git-send-email-amwang@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Amerigo Wang May 19, 2011, 6:36 a.m. UTC
Don't link the rbtree.o from kernel object tree, build
rbtree.o from source by ourselves.

Reported-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: WANG Cong <amwang@redhat.com>

---
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Ingo Molnar May 19, 2011, 7:44 a.m. UTC | #1
* Amerigo Wang <amwang@redhat.com> wrote:

> Don't link the rbtree.o from kernel object tree, build
> rbtree.o from source by ourselves.
> 
> Reported-by: Ingo Molnar <mingo@elte.hu>
> Signed-off-by: WANG Cong <amwang@redhat.com>

Nice, thanks!

Acked-by: Ingo Molnar <mingo@elte.hu>

	Ingo
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/tools/kvm/Makefile b/tools/kvm/Makefile
index 30f0f61..8cfa9a2 100644
--- a/tools/kvm/Makefile
+++ b/tools/kvm/Makefile
@@ -45,9 +45,10 @@  OBJS    += disk/blk.o
 OBJS    += mptable.o
 OBJS    += threadpool.o
 OBJS    += irq.o
-OBJS    += ../../lib/rbtree.o
+OBJS    += rbtree.o
 OBJS    += util/rbtree-interval.o
 
+
 FLAGS_BFD=$(CFLAGS) -lbfd
 has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD))
 ifeq ($(has_bfd),y)
@@ -123,6 +124,8 @@  kvm-help.d: $(KVM_INCLUDE)/common-cmds.h
 
 $(OBJS):
 
+rbtree.o: ../../lib/rbtree.c
+	$(Q) $(CC) -c $(CFLAGS) $< -o $@
 %.o: %.c
 	$(E) "  CC      " $@
 	$(Q) $(CC) -c $(CFLAGS) $< -o $@