aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2020-05-20 15:05:36 +0100
committerAlex Bennée <alex.bennee@linaro.org>2020-05-27 14:26:49 +0100
commitc729a99d27018b8d619544b18926b234b010b733 (patch)
treee0f82ff5c669c882b66928f998749108a32e745c /tests/tcg
parent086f269cf4eb0d759d7f716dcd239e6d310bb955 (diff)
downloadqemu-c729a99d27018b8d619544b18926b234b010b733.zip
qemu-c729a99d27018b8d619544b18926b234b010b733.tar.gz
qemu-c729a99d27018b8d619544b18926b234b010b733.tar.bz2
tests/docker: use a gcc-10 based image for arm64 tests
As we enable newer features that we want to test on arm64 targets we need newer compilers. Split off a new debian-arm64-test-cross image which we can use to build these new tests. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20200520140541.30256-11-alex.bennee@linaro.org>
Diffstat (limited to 'tests/tcg')
-rwxr-xr-xtests/tcg/configure.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tcg/configure.sh b/tests/tcg/configure.sh
index eaaaff6..2326f97 100755
--- a/tests/tcg/configure.sh
+++ b/tests/tcg/configure.sh
@@ -97,8 +97,8 @@ for target in $target_list; do
case $target in
aarch64-*)
# We don't have any bigendian build tools so we only use this for AArch64
- container_image=debian-arm64-cross
- container_cross_cc=aarch64-linux-gnu-gcc
+ container_image=debian-arm64-test-cross
+ container_cross_cc=aarch64-linux-gnu-gcc-10
;;
alpha-*)
container_image=debian-alpha-cross