Update LLVM tool versions for LLVM/Clang 10.

This commit is contained in:
Alex Rønne Petersen 2020-08-15 19:48:52 +02:00
parent 450155110c
commit 9f338e41b0
1 changed files with 2 additions and 1 deletions

View File

@ -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 = []