From ba17fab919b0307bb21f251fc2579c852fb9d77c Mon Sep 17 00:00:00 2001 From: Hugh Perkins Date: Thu, 8 May 2025 05:24:23 -0400 Subject: [PATCH 1/2] enable use of clang-15 on linux. Prioritize numbered clang over default clang --- .github/workflows/scripts/ti_build/compiler.py | 2 +- Testing/Temporary/CTestCostData.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 Testing/Temporary/CTestCostData.txt diff --git a/.github/workflows/scripts/ti_build/compiler.py b/.github/workflows/scripts/ti_build/compiler.py index b09ddea9da3c3..dcbd27bfbe77c 100644 --- a/.github/workflows/scripts/ti_build/compiler.py +++ b/.github/workflows/scripts/ti_build/compiler.py @@ -33,7 +33,7 @@ def setup_clang(as_compiler=True) -> None: """ u = platform.uname() if u.system == "Linux": - for v in ("", "-14", "-13", "-12", "-11", "-10"): + for v in ("-15", "-14", "-13", "-12", "-11", "-10", ""): clang = shutil.which(f"clang{v}") if clang is not None: clangpp = shutil.which(f"clang++{v}") diff --git a/Testing/Temporary/CTestCostData.txt b/Testing/Temporary/CTestCostData.txt new file mode 100644 index 0000000000000..ed97d539c095c --- /dev/null +++ b/Testing/Temporary/CTestCostData.txt @@ -0,0 +1 @@ +--- From 0e9af585022a7dbb651f4a6795f924409ecb2ade Mon Sep 17 00:00:00 2001 From: Hugh Perkins Date: Thu, 8 May 2025 06:08:54 -0400 Subject: [PATCH 2/2] dummy