aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2016-06-13 11:22:56 +0100
committerPeter Maydell <peter.maydell@linaro.org>2016-06-13 11:22:56 +0100
commit493de5f47d86822e03b7f7fdf446d96463f0cdc4 (patch)
tree7a4c46e48ca2a4f54777536a945890da7560f97c
parente188831d44149854b2d3c617c51887a1d5934efc (diff)
configure: Don't override ARCH=unknown if enabling TCI
At the moment if configure finds an unknown CPU it will set ARCH to 'unknown', and then later either bail out or set it to 'tci' (depending on whether the user passed configure the --enable-tcg-interpreter switch). This is unnecessarily confusing, because we could be using TCI in two cases: * a known host architecture (in which case ARCH is set to the actual host architecture, like 'i386') * an unknown host architecture (in which case ARCH is set to 'tci') so nothing can rely on ARCH=tci to mean "using TCI". Remove the line setting ARCH, so we leave it as "unknown", which is what the actual situation is. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rwxr-xr-xconfigure1
1 files changed, 0 insertions, 1 deletions
diff --git a/configure b/configure
index 8c2f90b312..7ab4e0bd6d 100755
--- a/configure
+++ b/configure
@@ -1381,7 +1381,6 @@ fi
if test "$ARCH" = "unknown"; then
if test "$tcg_interpreter" = "yes" ; then
echo "Unsupported CPU = $cpu, will use TCG with TCI (experimental)"
- ARCH=tci
else
error_exit "Unsupported CPU = $cpu, try --enable-tcg-interpreter"
fi