From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lubl2-0007F8-KH for qemu-devel@nongnu.org; Thu, 16 Apr 2009 20:16:40 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lubkx-0007CW-9w for qemu-devel@nongnu.org; Thu, 16 Apr 2009 20:16:39 -0400 Received: from [199.232.76.173] (port=50625 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lubkx-0007CT-55 for qemu-devel@nongnu.org; Thu, 16 Apr 2009 20:16:35 -0400 Received: from mx20.gnu.org ([199.232.41.8]:4696) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Lubkx-0008Og-19 for qemu-devel@nongnu.org; Thu, 16 Apr 2009 20:16:35 -0400 Received: from mail.codesourcery.com ([65.74.133.4]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Lubkv-0001Cz-DE for qemu-devel@nongnu.org; Thu, 16 Apr 2009 20:16:33 -0400 From: Paul Brook Subject: Re: [Qemu-devel] [7118] linux-user: prefer glibc over direct syscalls Date: Fri, 17 Apr 2009 01:16:28 +0100 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200904170116.28578.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: Aurelien Jarno On Wednesday 15 April 2009, Aurelien Jarno wrote: > +# Check for xxxat() functions when we are building linux-user > +# emulator. > +if [ "$linux_user" = "yes" ] ; then This is wrong. $linux_user only indicates whether the linux usermode targets are built by default. It can be overridden by --target-list. Paul