From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MCMPn-0007Hu-AQ for qemu-devel@nongnu.org; Thu, 04 Jun 2009 19:32:07 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MCMPc-000757-0d for qemu-devel@nongnu.org; Thu, 04 Jun 2009 19:32:02 -0400 Received: from [199.232.76.173] (port=52853 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MCMPb-0006Xf-NH for qemu-devel@nongnu.org; Thu, 04 Jun 2009 19:31:55 -0400 Received: from mx20.gnu.org ([199.232.41.8]:42762) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MCLn6-0002IA-38 for qemu-devel@nongnu.org; Thu, 04 Jun 2009 18:52:08 -0400 Received: from mail.codesourcery.com ([65.74.133.4]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MCLn4-00062U-Ql for qemu-devel@nongnu.org; Thu, 04 Jun 2009 18:52:07 -0400 From: Nathan Froyd Date: Thu, 4 Jun 2009 11:52:02 -0700 Message-Id: <1244141522-21802-8-git-send-email-froydnj@codesourcery.com> In-Reply-To: <1244141522-21802-1-git-send-email-froydnj@codesourcery.com> References: <1244141522-21802-1-git-send-email-froydnj@codesourcery.com> Subject: [Qemu-devel] [PATCH 7/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 b2a2540..6ba47c7 100755 --- a/configure +++ b/configure @@ -1892,6 +1892,7 @@ case "$target_cpu" in echo "#define TARGET_ARCH \"ppc\"" >> $config_h echo "#define TARGET_PPC 1" >> $config_h gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" + target_nptl="yes" ;; ppcemb) echo "TARGET_ARCH=ppcemb" >> $config_mak @@ -1905,6 +1906,7 @@ case "$target_cpu" in echo "#define CONFIG_KVM 1" >> $config_h fi gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" + target_nptl="yes" ;; ppc64) echo "TARGET_ARCH=ppc64" >> $config_mak -- 1.6.3.2