diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2023-08-07 11:22:08 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-08-28 09:55:48 +0200 |
commit | a04f33727cea092dc71be32745e8964f62fb8104 (patch) | |
tree | c873c37088365e517082798117c17380872ccb31 | |
parent | 33cc88261c352445d31599054653d759f20531c1 (diff) | |
download | qemu-a04f33727cea092dc71be32745e8964f62fb8104.zip qemu-a04f33727cea092dc71be32745e8964f62fb8104.tar.gz qemu-a04f33727cea092dc71be32745e8964f62fb8104.tar.bz2 |
configure: fix container_hosts misspellings and duplications
container_hosts is matched against $cpu, so it must contain QEMU
canonical architecture names, not Debian architecture names.
Also do not set $container_hosts inside the loop, since it is
already set before.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rwxr-xr-x | configure | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1352,7 +1352,7 @@ probe_target_compiler() { sh4) container_hosts=x86_64 ;; sparc64) container_hosts=x86_64 ;; tricore) container_hosts=x86_64 ;; - x86_64) container_hosts="aarch64 ppc64el x86_64" ;; + x86_64) container_hosts="aarch64 ppc64le x86_64" ;; xtensa*) container_hosts=x86_64 ;; esac @@ -1459,7 +1459,6 @@ probe_target_compiler() { container_cross_prefix=x86_64-linux-gnu- ;; xtensa*) - container_hosts=x86_64 container_image=debian-xtensa-cross # default to the dc232b cpu |