aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/environment.py
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2020-08-15 19:48:52 +0200
committerAlex Rønne Petersen <alex@alexrp.com>2020-08-22 18:57:09 +0200
commit9f338e41b06cbdd9a61a1122932177087c49bff8 (patch)
tree412453c73f398cccae9ed477a5f51b015fd0fa6a /mesonbuild/environment.py
parent450155110c5d2be2cc54dcf9a0f8e2345da19434 (diff)
downloadmeson-9f338e41b06cbdd9a61a1122932177087c49bff8.zip
meson-9f338e41b06cbdd9a61a1122932177087c49bff8.tar.gz
meson-9f338e41b06cbdd9a61a1122932177087c49bff8.tar.bz2
Update LLVM tool versions for LLVM/Clang 10.
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r--mesonbuild/environment.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
index da2d513..8571202 100644
--- a/mesonbuild/environment.py
+++ b/mesonbuild/environment.py
@@ -196,6 +196,7 @@ def get_llvm_tool_names(tool: str) -> T.List[str]:
# unless it becomes a stable release.
suffixes = [
'', # base (no suffix)
+ '-10', '100',
'-9', '90',
'-8', '80',
'-7', '70',
@@ -207,7 +208,7 @@ def get_llvm_tool_names(tool: str) -> T.List[str]:
'-3.7', '37',
'-3.6', '36',
'-3.5', '35',
- '-10', # Debian development snapshot
+ '-11', # Debian development snapshot
'-devel', # FreeBSD development snapshot
]
names = []