aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2021-04-01 11:25:23 +0100
committerAlex Bennée <alex.bennee@linaro.org>2021-04-06 15:04:42 +0100
commit08341b4fa6a9f6379b2e613cca8533fafc81861f (patch)
tree7adb17d3c3b0dc5d8263676e69ec8b051ce5a338 /tests
parentde6d7e6b021033d3754618b48f8c45d4cc21a17b (diff)
downloadqemu-08341b4fa6a9f6379b2e613cca8533fafc81861f.zip
qemu-08341b4fa6a9f6379b2e613cca8533fafc81861f.tar.gz
qemu-08341b4fa6a9f6379b2e613cca8533fafc81861f.tar.bz2
tests/tcg/configure.sh: make sure we pick up x86_64 cross compilers
While it's hard to find cross compilers packaged for arches other than x86_64 the same cannot be said for the x86_64 compiler which is available on Debians i386, arm64 and ppc64el release architectures. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20210401102530.12030-5-alex.bennee@linaro.org>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/tcg/configure.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/tcg/configure.sh b/tests/tcg/configure.sh
index 87a9f24..90fd81f 100755
--- a/tests/tcg/configure.sh
+++ b/tests/tcg/configure.sh
@@ -198,6 +198,11 @@ for target in $target_list; do
container_image=debian-sparc64-cross
container_cross_cc=sparc64-linux-gnu-gcc
;;
+ x86_64-*)
+ container_hosts="aarch64 ppc64el x86_64"
+ container_image=debian-amd64-cross
+ container_cross_cc=x86_64-linux-gnu-gcc
+ ;;
xtensa*-softmmu)
container_hosts=x86_64
container_image=debian-xtensa-cross