From 652f495a7b02c94de194faeafc387221c6329547 Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Tue, 14 Nov 2023 08:20:31 -0700 Subject: [PATCH] env: LLVM 17.0.5 Signed-off-by: Nathan Chancellor --- fish/functions/get_latest_stable_llvm_version.fish | 2 +- python/pgo-llvm-builder/build.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fish/functions/get_latest_stable_llvm_version.fish b/fish/functions/get_latest_stable_llvm_version.fish index 5c855bec..db381b25 100644 --- a/fish/functions/get_latest_stable_llvm_version.fish +++ b/fish/functions/get_latest_stable_llvm_version.fish @@ -6,7 +6,7 @@ function get_latest_stable_llvm_version -d 'Get the latest stable version for an for arg in $argv switch $arg case 17 - echo $arg.0.4 + echo $arg.0.5 case 15 echo $arg.0.7 case 14 16 diff --git a/python/pgo-llvm-builder/build.py b/python/pgo-llvm-builder/build.py index d1bb4099..766fe178 100755 --- a/python/pgo-llvm-builder/build.py +++ b/python/pgo-llvm-builder/build.py @@ -18,13 +18,13 @@ LLVM_REFS = { '18.0.0': 'origin/main', - '17.0.5': 'origin/release/17.x', + '17.0.6': 'origin/release/17.x', } LLVM_VERSIONS = [ '18.0.0', # git - '17.0.4', # latest branch - '17.0.4', # latest tag + '17.0.6', # latest branch + '17.0.5', # latest tag '16.0.6', '15.0.7', '14.0.6',