From patchwork Tue Jun 25 11:33:45 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 254127 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 18AA92C008E for ; Tue, 25 Jun 2013 21:54:59 +1000 (EST) Received: from localhost ([::1]:58305 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UrRpp-0007un-8Q for incoming@patchwork.ozlabs.org; Tue, 25 Jun 2013 07:54:57 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44251) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UrRpM-0007tH-PQ for qemu-devel@nongnu.org; Tue, 25 Jun 2013 07:54:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UrRpJ-0007V1-9a for qemu-devel@nongnu.org; Tue, 25 Jun 2013 07:54:28 -0400 Received: from 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.d.1.0.0.b.8.0.1.0.0.2.ip6.arpa ([2001:8b0:1d0::1]:58109 helo=mnementh.archaic.org.uk) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UrRpJ-0007Um-3a for qemu-devel@nongnu.org; Tue, 25 Jun 2013 07:54:25 -0400 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.80) (envelope-from ) id 1UrRVL-0008I6-RD; Tue, 25 Jun 2013 12:33:47 +0100 From: Peter Maydell To: qemu-devel@nongnu.org Date: Tue, 25 Jun 2013 12:33:45 +0100 Message-Id: <1372160027-31837-3-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1372160027-31837-1-git-send-email-peter.maydell@linaro.org> References: <1372160027-31837-1-git-send-email-peter.maydell@linaro.org> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:8b0:1d0::1 Cc: patches@linaro.org, Riku Voipio , Alexander Graf , Blue Swirl , Guan Xuetao , Aurelien Jarno , Richard Henderson Subject: [Qemu-devel] [PATCH 2/4] configure: Don't say target_nptl="no" if there is no linux-user target X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org For architectures with no linux-user target, don't claim no NPTL support. This has no behavioural change, but it means that we won't accidentally add a new linux-user target without threading support in future (because attempting to do so would be a compile failure rather than a silent lack of support). Signed-off-by: Peter Maydell --- configure | 3 --- 1 file changed, 3 deletions(-) diff --git a/configure b/configure index d363f42..440ba64 100755 --- a/configure +++ b/configure @@ -4171,7 +4171,6 @@ case "$target_name" in cris) ;; lm32) - target_nptl="no" ;; m68k) bflt="yes" @@ -4200,7 +4199,6 @@ case "$target_name" in target_nptl="no" ;; moxie) - target_nptl="no" ;; or32) TARGET_ARCH=openrisc @@ -4254,7 +4252,6 @@ case "$target_name" in ;; xtensa|xtensaeb) TARGET_ARCH=xtensa - target_nptl="no" ;; *) error_exit "Unsupported target CPU"