diff options
-rw-r--r-- | mesonbuild/environment.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 32141c9..6ac7604 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -157,6 +157,8 @@ def get_llvm_tool_names(tool: str) -> T.List[str]: # unless it becomes a stable release. suffixes = [ '', # base (no suffix) + '-14', '14', + '-13', '13', '-12', '12', '-11', '11', '-10', '10', @@ -171,7 +173,7 @@ def get_llvm_tool_names(tool: str) -> T.List[str]: '-3.7', '37', '-3.6', '36', '-3.5', '35', - '-13', # Debian development snapshot + '-15', # Debian development snapshot '-devel', # FreeBSD development snapshot ] names = [] |