Skip to content

Commit

Permalink
Add support for LLVM 19 in Debian.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpakkane authored and eli-schwartz committed Sep 5, 2024
1 parent 1e6e4c8 commit 3bb3d57
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mesonbuild/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,8 @@ def get_llvm_tool_names(tool: str) -> T.List[str]:
# unless it becomes a stable release.
suffixes = [
'', # base (no suffix)
'-19.1', '19.1',
'-19', '19',
'-18.1', '18.1',
'-18', '18',
'-17', '17',
Expand All @@ -217,7 +219,7 @@ def get_llvm_tool_names(tool: str) -> T.List[str]:
'-3.7', '37',
'-3.6', '36',
'-3.5', '35',
'-19', # Debian development snapshot
'-20', # Debian development snapshot
'-devel', # FreeBSD development snapshot
]
names: T.List[str] = []
Expand Down

0 comments on commit 3bb3d57

Please sign in to comment.