Add support for LLVM 19 in Debian.

Originally from here:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1080463
pull/13583/head
Jussi Pakkanen 3 months ago committed by Eli Schwartz
parent 1e6e4c8d57
commit 3bb3d576a1
  1. 4
      mesonbuild/environment.py

@ -196,6 +196,8 @@ def get_llvm_tool_names(tool: str) -> T.List[str]:
# unless it becomes a stable release. # unless it becomes a stable release.
suffixes = [ suffixes = [
'', # base (no suffix) '', # base (no suffix)
'-19.1', '19.1',
'-19', '19',
'-18.1', '18.1', '-18.1', '18.1',
'-18', '18', '-18', '18',
'-17', '17', '-17', '17',
@ -217,7 +219,7 @@ def get_llvm_tool_names(tool: str) -> T.List[str]:
'-3.7', '37', '-3.7', '37',
'-3.6', '36', '-3.6', '36',
'-3.5', '35', '-3.5', '35',
'-19', # Debian development snapshot '-20', # Debian development snapshot
'-devel', # FreeBSD development snapshot '-devel', # FreeBSD development snapshot
] ]
names: T.List[str] = [] names: T.List[str] = []

Loading…
Cancel
Save