From e416e6b1f17f3f7986cd4e280649a31f0aea8aa4 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Mon, 22 Jun 2020 17:18:27 -0700 Subject: [PATCH] util,tests: Added gcc version 10 to compiler tests In addition, gcc version 9 has been added, which was previously served by "ubuntu-20.04_all-dependencies". Change-Id: I57aeac2aa75b7751f0d4010efee7780e23d447d4 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/30515 Reviewed-by: Daniel Carvalho Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power Tested-by: kokoro --- util/compiler-tests.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/util/compiler-tests.sh b/util/compiler-tests.sh index 01db81877..30ce63703 100755 --- a/util/compiler-tests.sh +++ b/util/compiler-tests.sh @@ -11,13 +11,14 @@ build_dir="${gem5_root}/build" num_cores=`nproc` # All Docker images in the gem5 testing GCR which we want to compile with. -images=("ubuntu-20.04_all-dependencies" # Uses GCC-9 - "clang-version-9" +images=("gcc-version-10" + "gcc-version-9" "gcc-version-8" "gcc-version-7" "gcc-version-6" "gcc-version-5" "gcc-version-4.8" + "clang-version-9" "clang-version-8" "clang-version-7" "clang-version-6.0" @@ -27,7 +28,7 @@ images=("ubuntu-20.04_all-dependencies" # Uses GCC-9 # A subset of the above list: these images will build against every target, # ignoring builds_per_compiler. -comprehensive=("ubuntu-20.04_all-dependencies" +comprehensive=("gcc-version-10" "clang-version-9") # All build targets in build_opt/ which we want to build using each image. -- 2.30.2