aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/environment.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2020-08-23 00:26:44 +0300
committerGitHub <noreply@github.com>2020-08-23 00:26:44 +0300
commitfc13c90de343f22f494cc1868bd76ac372236ee1 (patch)
tree9ce78640259911b2b5f420bd38552667c6ab8f74 /mesonbuild/environment.py
parenta9f33d96c674763657315770a99358d271206551 (diff)
parent9f338e41b06cbdd9a61a1122932177087c49bff8 (diff)
downloadmeson-fc13c90de343f22f494cc1868bd76ac372236ee1.zip
meson-fc13c90de343f22f494cc1868bd76ac372236ee1.tar.gz
meson-fc13c90de343f22f494cc1868bd76ac372236ee1.tar.bz2
Merge pull request #7600 from alexrp/master
Add C2x option support.
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 492789c..eee336e 100644
--- a/mesonbuild/environment.py
+++ b/mesonbuild/environment.py
@@ -203,6 +203,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',
@@ -214,7 +215,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 = []