From mboxrd@z Thu Jan 1 00:00:00 1970 From: Keir Fraser Subject: Re: xenstored vanished Date: Fri, 7 May 2010 10:24:28 +0100 Message-ID: References: <201005071117.59135.Christoph.Egger@amd.com> Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <201005071117.59135.Christoph.Egger@amd.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Christoph Egger , "xen-devel@lists.xensource.com" List-Id: xen-devel@lists.xenproject.org On 07/05/2010 10:17, "Christoph Egger" wrote: >> I can't start xend as it can't find xenstored anymore. >> >> What happened ? >> >> Christoph > > OCAML_TOOLS are unconditionally enabled but I haven't installed > the ocaml tools. So xenstored got build but not installed. > I'm wondering why the build process did not fail. > > Please only build ocaml version when ocaml is installed. That is already the case: ifeq ($(OCAML_TOOLS),y) ifeq ($(CONFIG_Linux),y) OCAML_TOOLS := $(shell ocamlopt -v > /dev/null 2>&1 && echo "y" || echo "n") else OCAML_TOOLS := n endif endif I can only conclude that you do have the ocaml toolchain installed. The ocaml stuff was broken when first checked in, but it's now building okay for me (e.g., current tip, c/s 21326). If you are building on NetBSD then as you can see above, the ocaml build is forcibly disabled on non-Linux systems. -- Keir