From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Hd5Pl-00052X-T6 for qemu-devel@nongnu.org; Sun, 15 Apr 2007 10:09:14 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Hd5Pk-00051q-Sq for qemu-devel@nongnu.org; Sun, 15 Apr 2007 10:09:13 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hd5Pk-00051k-Od for qemu-devel@nongnu.org; Sun, 15 Apr 2007 10:09:12 -0400 Received: from mail.codesourcery.com ([65.74.133.4]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Hd5LE-00051Y-Eh for qemu-devel@nongnu.org; Sun, 15 Apr 2007 10:04:32 -0400 From: Paul Brook Subject: Re: [Qemu-devel] [Patch] Makefile.target Date: Sun, 15 Apr 2007 15:04:28 +0100 References: <46222F54.3080702@weilnetz.de> In-Reply-To: <46222F54.3080702@weilnetz.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200704151504.29308.paul@codesourcery.com> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Stefan Weil On Sunday 15 April 2007 14:57, Stefan Weil wrote: > This small patch for Makefile.target fixes a very special build issue: > > make distclean # (only needed to remove files left from earlier builds) > ./configure > make -C i386-softmmu # (or any other system emulation) > > will try to build the missing dyngen and fail because dyngen is > normally build by the root Makefile. > > The patch adds a rule for dyngen which simply calls "make dyngen" in the > root directory. I think "don't do that" is the most appropriate response to this problem. It's certainly not something I'd like to commit to keeping working long-term. Try "make subdir-i386-softmmu" if you really must do this. Configuring with --target-list=i386-softmmu is a much better solution though. Paul