diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2013-07-16 18:44:49 +0100 |
|---|---|---|
| committer | Riku Voipio <riku.voipio@linaro.org> | 2013-07-22 21:53:46 +0300 |
| commit | fa78f3dbe4e0e1d9a34556b73e5118cb40153875 (patch) | |
| tree | d6f3279fefb5ec8d27fd3a44b0a5dfc63dab9d88 | |
| parent | aa004f5f9c5785273ef56b8c0b775f57ccb19168 (diff) | |
| download | focaccia-qemu-fa78f3dbe4e0e1d9a34556b73e5118cb40153875.tar.gz focaccia-qemu-fa78f3dbe4e0e1d9a34556b73e5118cb40153875.zip | |
configure: Don't say target_nptl="no" if there is no linux-user target
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 <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
| -rwxr-xr-x | configure | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/configure b/configure index 983f4d5b5d..3792607c3b 100755 --- a/configure +++ b/configure @@ -4206,7 +4206,6 @@ case "$target_name" in cris) ;; lm32) - target_nptl="no" ;; m68k) bflt="yes" @@ -4235,7 +4234,6 @@ case "$target_name" in target_nptl="no" ;; moxie) - target_nptl="no" ;; or32) TARGET_ARCH=openrisc @@ -4289,7 +4287,6 @@ case "$target_name" in ;; xtensa|xtensaeb) TARGET_ARCH=xtensa - target_nptl="no" ;; *) error_exit "Unsupported target CPU" |