From 6090a43b9388a1bdb36d9013451abee2e4d62768 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Tue, 21 Sep 2021 10:38:38 -0700 Subject: [PATCH] tests: Add GCC-11 to the compiler tests Change-Id: I3701e850433b597fb0d6d06e058a21607e4efc88 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/50749 Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power Tested-by: kokoro --- tests/compiler-tests.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/compiler-tests.sh b/tests/compiler-tests.sh index bf1d281853..699d134e0d 100755 --- a/tests/compiler-tests.sh +++ b/tests/compiler-tests.sh @@ -10,7 +10,8 @@ gem5_root="${dir}/.." build_dir="${gem5_root}/build" # All Docker images in the gem5 testing GCR which we want to compile with. -images=("gcc-version-10" +images=("gcc-version-11" + "gcc-version-10" "gcc-version-9" "gcc-version-8" "gcc-version-7" @@ -29,7 +30,7 @@ images=("gcc-version-10" # A subset of the above list: these images will build against every target, # ignoring builds_per_compiler. -comprehensive=("gcc-version-10" +comprehensive=("gcc-version-11") "clang-version-11") # All build targets in build_opt/ which we want to build using each image.