From: George Dunlap <george.dunlap@eu.citrix.com>
To: xen-devel@lists.xensource.com
Cc: george.dunlap@eu.citrix.com
Subject: [PATCH] [PATCH v2] build: Don't fetch tools/ioemu-dir unless needed
Date: Mon, 9 May 2011 12:48:07 +0100 [thread overview]
Message-ID: <cf5d1c7bbbfd85530b3f.1304941687@elijah> (raw)
c/s 18482 made both stubdom and tools dependent on tools/ioemu-dir
to fix a race condition where both build paths might try to fetch
qemu in parallel. But this means that even if you build the tools
with CONFIG_IOEMU=n, qemu is still fetched first.
This patch causes tools/ioemu-dir to be a dependency for tools
only if CONFIG_IOEMU is enabled.
It's still unconditional for stubdoms, as it doesn't make much sense
to build stubdoms without it.
Signed-off-by: George Dunlap <george.dunlap@eu.citrix.com>
diff -r 4b0692880dfa -r cf5d1c7bbbfd Makefile
--- a/Makefile Thu May 05 17:40:34 2011 +0100
+++ b/Makefile Mon May 09 12:44:09 2011 +0100
@@ -13,6 +13,11 @@ SUBARCH := $(subst x86_32,i386,$(XEN_TAR
export XEN_TARGET_ARCH SUBARCH XEN_SYSTYPE
include buildconfigs/Rules.mk
+# If building with CONFIG_IOEMU, get ioemu-dir before building
+# tools or stubdom (or they may race)
+SHARED_SUBDIRS-y :=
+SHARED_SUBDIRS-$(CONFIG_IOEMU) += tools/ioemu-dir
+
# build and install everything into the standard system directories
.PHONY: install
install: install-xen install-kernels install-tools install-stubdom install-docs
@@ -66,7 +71,7 @@ install-xen:
$(MAKE) -C xen install
.PHONY: install-tools
-install-tools: tools/ioemu-dir
+install-tools: $(SHARED_SUBDIRS-y)
$(MAKE) -C tools install
.PHONY: install-kernels
@@ -74,6 +79,7 @@ install-kernels:
for i in $(XKERNELS) ; do $(MAKE) $$i-install || exit 1; done
.PHONY: install-stubdom
+# NB: depend on tools/ioemu-dir unconditionally for stubdoms
install-stubdom: tools/ioemu-dir install-tools
$(MAKE) -C stubdom install
ifeq (x86_64,$(XEN_TARGET_ARCH))
next reply other threads:[~2011-05-09 11:48 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-09 11:48 George Dunlap [this message]
2011-05-24 16:16 ` [PATCH] [PATCH v2] build: Don't fetch tools/ioemu-dir unless needed Ian Jackson
2011-05-24 18:00 ` Keir Fraser
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cf5d1c7bbbfd85530b3f.1304941687@elijah \
--to=george.dunlap@eu.citrix.com \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).