diff options
| author | dragonmux <git@dragonmux.network> | 2023-08-23 22:50:37 +0100 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2024-02-24 11:35:02 -0800 |
| commit | 67afddbf431140c1ee064bf79a2fa5a95575488e (patch) | |
| tree | ee5f8ee987809d48ce2c2ec116eacb1b7b208b3a | |
| parent | d4450520e05c69438e8f5696f3576d6b4102c729 (diff) | |
| download | meson-67afddbf431140c1ee064bf79a2fa5a95575488e.tar.gz | |
environment: Add LLVM 18 support to get_llvm_tool_names()
| -rw-r--r-- | mesonbuild/environment.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 645a7888f..af69f64ec 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -188,6 +188,7 @@ def get_llvm_tool_names(tool: str) -> T.List[str]: # unless it becomes a stable release. suffixes = [ '', # base (no suffix) + '-18', '18', '-17', '17', '-16', '16', '-15', '15', |
