qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] build: Cleanup qga make output


From: Anthony Liguori
Subject: Re: [Qemu-devel] [PATCH] build: Cleanup qga make output
Date: Mon, 12 Dec 2011 17:03:34 -0600
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.21) Gecko/20110831 Lightning/1.0b2 Thunderbird/3.1.13

On 12/07/2011 10:33 AM, Adam Litke wrote:
Currently the make variable qapi-dir refers to the qapi-generated directory in
absolute terms.  This causes the harmless but ugly make output below.  By
changing this variable to the relative path the output conforms to the norm and
the build works fine.

Before patch:
   CC    /home/aglitke/src/qemu/qapi-generated/qga-qapi-types.o
   CC    /home/aglitke/src/qemu/qapi-generated/qga-qapi-visit.o
   CC    /home/aglitke/src/qemu/qapi-generated/qga-qmp-marshal.o
After patch:
   CC    qapi-generated/qga-qapi-types.o
   CC    qapi-generated/qga-qapi-visit.o
   CC    qapi-generated/qga-qmp-marshal.o

This was supposedly to fix a build issue that I was never able to reproduce. I think Luiz could reproduce it though. Luiz, could you try out Adam's patch and confirm it breaks for you?

Regards,

Anthony Liguori


Signed-off-by: Adam Litke<address@hidden>
---
  Makefile |    2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Makefile b/Makefile
index 301c75e..7c93739 100644
--- a/Makefile
+++ b/Makefile
@@ -168,7 +168,7 @@ check-qjson: check-qjson.o $(qobject-obj-y) $(tools-obj-y)
  test-coroutine: test-coroutine.o qemu-timer-common.o async.o 
$(coroutine-obj-y) $(tools-obj-y)

  $(qapi-obj-y): $(GENERATED_HEADERS)
-qapi-dir := $(BUILD_DIR)/qapi-generated
+qapi-dir := qapi-generated
  test-visitor.o test-qmp-commands.o qemu-ga$(EXESUF): QEMU_CFLAGS += -I 
$(qapi-dir)
  qemu-ga$(EXESUF): LIBS = $(LIBS_QGA)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]