From patchwork Mon Aug 3 15:43:28 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nathan Froyd X-Patchwork-Id: 30652 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by bilbo.ozlabs.org (Postfix) with ESMTPS id B9B4FB6F31 for ; Tue, 4 Aug 2009 05:02:30 +1000 (EST) Received: from localhost ([127.0.0.1]:45077 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MY2nh-0006R1-VF for incoming@patchwork.ozlabs.org; Mon, 03 Aug 2009 15:02:25 -0400 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 Received: (qmail 20669 invoked from network); 3 Aug 2009 15:43:31 -0000 Received: from unknown (HELO localhost) (froydnj@127.0.0.2) by mail.codesourcery.com with ESMTPA; 3 Aug 2009 15:43:31 -0000 From: Nathan Froyd To: qemu-devel@nongnu.org Date: Mon, 3 Aug 2009 08:43:28 -0700 Message-Id: <1249314209-10230-7-git-send-email-froydnj@codesourcery.com> X-Mailer: git-send-email 1.6.3.2 In-Reply-To: <1249314209-10230-1-git-send-email-froydnj@codesourcery.com> References: <1249314209-10230-1-git-send-email-froydnj@codesourcery.com> X-Detected-Operating-System: by mx20.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: Subject: [Qemu-devel] [PATCH 6/7] enable NPTL for ppc-linux-user targets in configure X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@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