* [Qemu-devel] [PATCH] Makefile: Fix parallel building after a clean tree
@ 2011-07-26 14:33 Stefan Berger
2011-07-26 16:36 ` [Qemu-devel] [Qemu-trivial] " Michael Roth
0 siblings, 1 reply; 5+ messages in thread
From: Stefan Berger @ 2011-07-26 14:33 UTC (permalink / raw)
To: qemu-trivial, aliguori; +Cc: qemu-devel@nongnu.org
This patch fixes a compilation error when building qemu after 'make clean'
by parallel building using 'make -j6' for example. A dependency seems to be missing.
GEN qemu-options.def
GEN trace.h
GEN qapi-generated/qga-qapi-types.h
GEN qapi-generated/qga-qapi-visit.h
GEN qapi-generated/qga-qmp-marshal.c
CC qga/guest-agent-command-state.o
CC qga/guest-agent-commands.o
GEN trace.c
GEN qemu-img-cmds.h
cc1: error: qapi-generated: No such file or directory [-Werror]
cc1: all warnings being treated as errors
Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
---
Makefile | 2 ++
1 file changed, 2 insertions(+)
Index: qemu-git/Makefile
===================================================================
--- qemu-git.orig/Makefile
+++ qemu-git/Makefile
@@ -192,6 +192,8 @@ test-qmp-commands.o: $(addprefix $(qapi-
test-qmp-commands: test-qmp-commands.o qfloat.o qint.o qdict.o qstring.o qlist.o qbool.o $(qapi-obj-y) error.o osdep.o qemu-malloc.o $(oslib-obj-y) qjson.o json-streamer.o json-lexer.o json-parser.o qerror.o qemu-error.o qemu-tool.o $(qapi-dir)/test-qapi-visit.o $(qapi-dir)/test-qapi-types.o $(qapi-dir)/test-qmp-marshal.o module.o
QGALIB=qga/guest-agent-command-state.o qga/guest-agent-commands.o
+$(QGALIB): qemu-ga.o
+
qemu-ga.o: $(addprefix $(qapi-dir)/, qga-qapi-types.c qga-qapi-types.h qga-qapi-visit.c qga-qmp-marshal.c) $(qapi-obj-y)
qemu-ga$(EXESUF): qemu-ga.o $(QGALIB) qemu-tool.o qemu-error.o error.o $(oslib-obj-y) $(trace-obj-y) $(block-obj-y) $(qobject-obj-y) $(version-obj-y) $(qapi-obj-y) qemu-timer-common.o qemu-sockets.o module.o qapi/qmp-dispatch.o qapi/qmp-registry.o $(qapi-dir)/qga-qapi-visit.o $(qapi-dir)/qga-qapi-types.o $(qapi-dir)/qga-qmp-marshal.o
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [Qemu-trivial] [PATCH] Makefile: Fix parallel building after a clean tree
2011-07-26 14:33 [Qemu-devel] [PATCH] Makefile: Fix parallel building after a clean tree Stefan Berger
@ 2011-07-26 16:36 ` Michael Roth
2011-07-26 16:39 ` [Qemu-devel] [PATCH] Makefile: add missing deps on $(GENERATED_HEADERS) Michael Roth
0 siblings, 1 reply; 5+ messages in thread
From: Michael Roth @ 2011-07-26 16:36 UTC (permalink / raw)
To: Stefan Berger; +Cc: qemu-trivial, aliguori, qemu-devel@nongnu.org
On 07/26/2011 09:33 AM, Stefan Berger wrote:
> This patch fixes a compilation error when building qemu after 'make clean'
> by parallel building using 'make -j6' for example. A dependency seems to be missing.
>
> GEN qemu-options.def
> GEN trace.h
> GEN qapi-generated/qga-qapi-types.h
> GEN qapi-generated/qga-qapi-visit.h
> GEN qapi-generated/qga-qmp-marshal.c
> CC qga/guest-agent-command-state.o
> CC qga/guest-agent-commands.o
> GEN trace.c
> GEN qemu-img-cmds.h
> cc1: error: qapi-generated: No such file or directory [-Werror]
> cc1: all warnings being treated as errors
>
>
> Signed-off-by: Stefan Berger<stefanb@linux.vnet.ibm.com>
>
> ---
> Makefile | 2 ++
> 1 file changed, 2 insertions(+)
>
> Index: qemu-git/Makefile
> ===================================================================
> --- qemu-git.orig/Makefile
> +++ qemu-git/Makefile
> @@ -192,6 +192,8 @@ test-qmp-commands.o: $(addprefix $(qapi-
> test-qmp-commands: test-qmp-commands.o qfloat.o qint.o qdict.o qstring.o qlist.o qbool.o $(qapi-obj-y) error.o osdep.o qemu-malloc.o $(oslib-obj-y) qjson.o json-streamer.o json-lexer.o json-parser.o qerror.o qemu-error.o qemu-tool.o $(qapi-dir)/test-qapi-visit.o $(qapi-dir)/test-qapi-types.o $(qapi-dir)/test-qmp-marshal.o module.o
>
> QGALIB=qga/guest-agent-command-state.o qga/guest-agent-commands.o
> +$(QGALIB): qemu-ga.o
> +
>
> qemu-ga.o: $(addprefix $(qapi-dir)/, qga-qapi-types.c qga-qapi-types.h qga-qapi-visit.c qga-qmp-marshal.c) $(qapi-obj-y)
> qemu-ga$(EXESUF): qemu-ga.o $(QGALIB) qemu-tool.o qemu-error.o error.o $(oslib-obj-y) $(trace-obj-y) $(block-obj-y) $(qobject-obj-y) $(version-obj-y) $(qapi-obj-y) qemu-timer-common.o qemu-sockets.o module.o qapi/qmp-dispatch.o qapi/qmp-registry.o $(qapi-dir)/qga-qapi-visit.o $(qapi-dir)/qga-qapi-types.o $(qapi-dir)/qga-qmp-marshal.o
>
>
Hi Stefan,
Thanks for catching this. It seems to do the trick for me up until make
-j10, where a missing dependency on $(GENERATED_HEADERS) becomes an
issue. I'll have a patch I'll send shortly.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] [PATCH] Makefile: add missing deps on $(GENERATED_HEADERS)
2011-07-26 16:36 ` [Qemu-devel] [Qemu-trivial] " Michael Roth
@ 2011-07-26 16:39 ` Michael Roth
2011-07-26 18:34 ` Stefan Berger
2011-07-27 8:21 ` [Qemu-devel] [Qemu-trivial] " Stefan Hajnoczi
0 siblings, 2 replies; 5+ messages in thread
From: Michael Roth @ 2011-07-26 16:39 UTC (permalink / raw)
To: qemu-devel; +Cc: qemu-trivial, aliguori, stefanb
This fixes a build issue with make -j6+ due to qapi-generated files
being built before $(GENERATED_HEADERS) have been created.
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
---
Makefile | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index daa3aa0..0a31633 100644
--- a/Makefile
+++ b/Makefile
@@ -192,8 +192,10 @@ test-qmp-commands.o: $(addprefix $(qapi-dir)/, test-qapi-types.c test-qapi-types
test-qmp-commands: test-qmp-commands.o qfloat.o qint.o qdict.o qstring.o qlist.o qbool.o $(qapi-obj-y) error.o osdep.o qemu-malloc.o $(oslib-obj-y) qjson.o json-streamer.o json-lexer.o json-parser.o qerror.o qemu-error.o qemu-tool.o $(qapi-dir)/test-qapi-visit.o $(qapi-dir)/test-qapi-types.o $(qapi-dir)/test-qmp-marshal.o module.o
QGALIB=qga/guest-agent-command-state.o qga/guest-agent-commands.o
+QGALIB_GEN=$(addprefix $(qapi-dir)/, qga-qapi-types.c qga-qapi-types.h qga-qapi-visit.c qga-qmp-marshal.c)
-qemu-ga.o: $(addprefix $(qapi-dir)/, qga-qapi-types.c qga-qapi-types.h qga-qapi-visit.c qga-qmp-marshal.c) $(qapi-obj-y)
+$(QGALIB_GEN): $(GENERATED_HEADERS)
+$(QGALIB) qemu-ga.o: $(QGALIB_GEN) $(qapi-obj-y)
qemu-ga$(EXESUF): qemu-ga.o $(QGALIB) qemu-tool.o qemu-error.o error.o $(oslib-obj-y) $(trace-obj-y) $(block-obj-y) $(qobject-obj-y) $(version-obj-y) $(qapi-obj-y) qemu-timer-common.o qemu-sockets.o module.o qapi/qmp-dispatch.o qapi/qmp-registry.o $(qapi-dir)/qga-qapi-visit.o $(qapi-dir)/qga-qapi-types.o $(qapi-dir)/qga-qmp-marshal.o
QEMULIBS=libhw32 libhw64 libuser libdis libdis-user
--
1.7.0.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] Makefile: add missing deps on $(GENERATED_HEADERS)
2011-07-26 16:39 ` [Qemu-devel] [PATCH] Makefile: add missing deps on $(GENERATED_HEADERS) Michael Roth
@ 2011-07-26 18:34 ` Stefan Berger
2011-07-27 8:21 ` [Qemu-devel] [Qemu-trivial] " Stefan Hajnoczi
1 sibling, 0 replies; 5+ messages in thread
From: Stefan Berger @ 2011-07-26 18:34 UTC (permalink / raw)
To: Michael Roth; +Cc: qemu-trivial, aliguori, qemu-devel
On 07/26/2011 12:39 PM, Michael Roth wrote:
> This fixes a build issue with make -j6+ due to qapi-generated files
> being built before $(GENERATED_HEADERS) have been created.
>
> Signed-off-by: Michael Roth<mdroth@linux.vnet.ibm.com>
Tested-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
> ---
> Makefile | 4 +++-
> 1 files changed, 3 insertions(+), 1 deletions(-)
>
> diff --git a/Makefile b/Makefile
> index daa3aa0..0a31633 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -192,8 +192,10 @@ test-qmp-commands.o: $(addprefix $(qapi-dir)/, test-qapi-types.c test-qapi-types
> test-qmp-commands: test-qmp-commands.o qfloat.o qint.o qdict.o qstring.o qlist.o qbool.o $(qapi-obj-y) error.o osdep.o qemu-malloc.o $(oslib-obj-y) qjson.o json-streamer.o json-lexer.o json-parser.o qerror.o qemu-error.o qemu-tool.o $(qapi-dir)/test-qapi-visit.o $(qapi-dir)/test-qapi-types.o $(qapi-dir)/test-qmp-marshal.o module.o
>
> QGALIB=qga/guest-agent-command-state.o qga/guest-agent-commands.o
> +QGALIB_GEN=$(addprefix $(qapi-dir)/, qga-qapi-types.c qga-qapi-types.h qga-qapi-visit.c qga-qmp-marshal.c)
>
> -qemu-ga.o: $(addprefix $(qapi-dir)/, qga-qapi-types.c qga-qapi-types.h qga-qapi-visit.c qga-qmp-marshal.c) $(qapi-obj-y)
> +$(QGALIB_GEN): $(GENERATED_HEADERS)
> +$(QGALIB) qemu-ga.o: $(QGALIB_GEN) $(qapi-obj-y)
> qemu-ga$(EXESUF): qemu-ga.o $(QGALIB) qemu-tool.o qemu-error.o error.o $(oslib-obj-y) $(trace-obj-y) $(block-obj-y) $(qobject-obj-y) $(version-obj-y) $(qapi-obj-y) qemu-timer-common.o qemu-sockets.o module.o qapi/qmp-dispatch.o qapi/qmp-registry.o $(qapi-dir)/qga-qapi-visit.o $(qapi-dir)/qga-qapi-types.o $(qapi-dir)/qga-qmp-marshal.o
>
> QEMULIBS=libhw32 libhw64 libuser libdis libdis-user
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [Qemu-trivial] [PATCH] Makefile: add missing deps on $(GENERATED_HEADERS)
2011-07-26 16:39 ` [Qemu-devel] [PATCH] Makefile: add missing deps on $(GENERATED_HEADERS) Michael Roth
2011-07-26 18:34 ` Stefan Berger
@ 2011-07-27 8:21 ` Stefan Hajnoczi
1 sibling, 0 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2011-07-27 8:21 UTC (permalink / raw)
To: Michael Roth; +Cc: qemu-trivial, aliguori, qemu-devel
On Tue, Jul 26, 2011 at 11:39:24AM -0500, Michael Roth wrote:
> This fixes a build issue with make -j6+ due to qapi-generated files
> being built before $(GENERATED_HEADERS) have been created.
>
> Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
> ---
> Makefile | 4 +++-
> 1 files changed, 3 insertions(+), 1 deletions(-)
Thanks, applied to the trivial patches tree:
http://repo.or.cz/w/qemu/stefanha.git/shortlog/refs/heads/trivial-patches
Stefan
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-07-27 8:22 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-26 14:33 [Qemu-devel] [PATCH] Makefile: Fix parallel building after a clean tree Stefan Berger
2011-07-26 16:36 ` [Qemu-devel] [Qemu-trivial] " Michael Roth
2011-07-26 16:39 ` [Qemu-devel] [PATCH] Makefile: add missing deps on $(GENERATED_HEADERS) Michael Roth
2011-07-26 18:34 ` Stefan Berger
2011-07-27 8:21 ` [Qemu-devel] [Qemu-trivial] " Stefan Hajnoczi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).