From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MY07A-0006AG-Lf for qemu-devel@nongnu.org; Mon, 03 Aug 2009 12:10:20 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MY075-00067F-RS for qemu-devel@nongnu.org; Mon, 03 Aug 2009 12:10:20 -0400 Received: from [199.232.76.173] (port=59356 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MY075-00067A-Ma for qemu-devel@nongnu.org; Mon, 03 Aug 2009 12:10:15 -0400 Received: from mx20.gnu.org ([199.232.41.8]:51913) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MY075-0001oo-CH for qemu-devel@nongnu.org; Mon, 03 Aug 2009 12:10:15 -0400 Received: from mail.codesourcery.com ([65.74.133.4]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MY074-0005yq-Ii for qemu-devel@nongnu.org; Mon, 03 Aug 2009 12:10:14 -0400 From: Nathan Froyd Date: Mon, 3 Aug 2009 08:43:28 -0700 Message-Id: <1249314209-10230-7-git-send-email-froydnj@codesourcery.com> In-Reply-To: <1249314209-10230-1-git-send-email-froydnj@codesourcery.com> References: <1249314209-10230-1-git-send-email-froydnj@codesourcery.com> Subject: [Qemu-devel] [PATCH 6/7] enable NPTL for ppc-linux-user targets in configure List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Enabling support for ppc64-linux-user should be easy enough to do later. Signed-off-by: Nathan Froyd --- configure | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 36db3b2..def8948 100755 --- a/configure +++ b/configure @@ -1921,12 +1921,14 @@ case "$target_arch2" in ppc) gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" target_phys_bits=32 + target_nptl="yes" ;; ppcemb) TARGET_BASE_ARCH=ppc TARGET_ABI_DIR=ppc gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" target_phys_bits=64 + target_nptl="yes" ;; ppc64) TARGET_BASE_ARCH=ppc -- 1.6.3.2