diff options
author | Ting-Wei Lan <lantw@src.gnome.org> | 2019-09-20 23:37:59 +0800 |
---|---|---|
committer | Ting-Wei Lan <lantw@src.gnome.org> | 2019-09-29 00:11:16 +0800 |
commit | 24bd0294372d388160d3b093407d6f0db9aa5481 (patch) | |
tree | eb5f49862068d812fee7e31e1e174c781424ec9d /mesonbuild/environment.py | |
parent | 0390b673f11cc2834b6a04e1fc5e58e4cb24afcb (diff) | |
download | meson-24bd0294372d388160d3b093407d6f0db9aa5481.zip meson-24bd0294372d388160d3b093407d6f0db9aa5481.tar.gz meson-24bd0294372d388160d3b093407d6f0db9aa5481.tar.bz2 |
environment: LLVM 9 is now a stable release
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 0fec347..38f9004 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -171,6 +171,7 @@ def get_llvm_tool_names(tool: str) -> typing.List[str]: # unless it becomes a stable release. suffixes = [ '', # base (no suffix) + '-9', '90', '-8', '80', '-7', '70', '-6.0', '60', @@ -181,7 +182,7 @@ def get_llvm_tool_names(tool: str) -> typing.List[str]: '-3.7', '37', '-3.6', '36', '-3.5', '35', - '-9', # Debian development snapshot + '-10', # Debian development snapshot '-devel', # FreeBSD development snapshot ] names = [] |