[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 2/8] configure: Don't say target_nptl="no" if there
From: |
Peter Maydell |
Subject: |
[Qemu-devel] [PATCH 2/8] configure: Don't say target_nptl="no" if there is no linux-user target |
Date: |
Fri, 12 Jul 2013 21:12:47 +0100 |
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 <address@hidden>
Reviewed-by: Richard Henderson <address@hidden>
---
configure | 3 ---
1 file changed, 3 deletions(-)
diff --git a/configure b/configure
index ae9519c..c159f34 100755
--- a/configure
+++ b/configure
@@ -4199,7 +4199,6 @@ case "$target_name" in
cris)
;;
lm32)
- target_nptl="no"
;;
m68k)
bflt="yes"
@@ -4228,7 +4227,6 @@ case "$target_name" in
target_nptl="no"
;;
moxie)
- target_nptl="no"
;;
or32)
TARGET_ARCH=openrisc
@@ -4282,7 +4280,6 @@ case "$target_name" in
;;
xtensa|xtensaeb)
TARGET_ARCH=xtensa
- target_nptl="no"
;;
*)
error_exit "Unsupported target CPU"
--
1.7.9.5
- [Qemu-devel] [PATCH 0/8] linux-user: enable NPTL on everything but x86, Peter Maydell, 2013/07/12
- [Qemu-devel] [PATCH 4/8] configure: Enable threading for unicore32-linux-user, Peter Maydell, 2013/07/12
- [Qemu-devel] [PATCH 3/8] configure: Enable threading on all ppc and mips linux-user targets, Peter Maydell, 2013/07/12
- [Qemu-devel] [PATCH 2/8] configure: Don't say target_nptl="no" if there is no linux-user target,
Peter Maydell <=
- [Qemu-devel] [PATCH 5/8] linux-user: Move includes of target-specific headers to end of qemu.h, Peter Maydell, 2013/07/12
- [Qemu-devel] [PATCH 7/8] linux-user: Enable NPTL for SPARC targets, Peter Maydell, 2013/07/12
- [Qemu-devel] [PATCH 1/8] configure: Flip default of target_nptl, Peter Maydell, 2013/07/12
- [Qemu-devel] [PATCH 8/8] linux-user: Enable NPTL for m68k, Peter Maydell, 2013/07/12
- [Qemu-devel] [PATCH 6/8] linux-user: Enable NPTL for OpenRISC, Peter Maydell, 2013/07/12