aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2023-09-23 17:21:43 +0200
committerDylan Baker <dylan@pnwbakers.com>2023-09-23 12:34:23 -0700
commitd0b09898c703f6c10ec5a6b2aeace0df2e3570aa (patch)
tree2f13890647d6c51e13b1d4f739109c83b13db73c
parent586bd1136d38e6695369617dfcc1dba50c35b279 (diff)
downloadmeson-d0b09898c703f6c10ec5a6b2aeace0df2e3570aa.zip
meson-d0b09898c703f6c10ec5a6b2aeace0df2e3570aa.tar.gz
meson-d0b09898c703f6c10ec5a6b2aeace0df2e3570aa.tar.bz2
get_llvm_tool_names: add llvm 17
this fixes the "frameworks: 15 llvm" tests with llvm 17
-rw-r--r--mesonbuild/environment.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
index 53cb120..5c7d78b 100644
--- a/mesonbuild/environment.py
+++ b/mesonbuild/environment.py
@@ -157,6 +157,7 @@ def get_llvm_tool_names(tool: str) -> T.List[str]:
# unless it becomes a stable release.
suffixes = [
'', # base (no suffix)
+ '-17', '17',
'-16', '16',
'-15', '15',
'-14', '14',