aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-03-05 11:41:09 -0800
committerJussi Pakkanen <jpakkane@gmail.com>2019-03-07 11:14:05 +0200
commitcb614e8ff6c7b0775686c846c5b6e12a332c76fc (patch)
tree504fa507e79a4241e3b1340f2323eb58ccd6c35c /mesonbuild
parent068217a3857bb8ea1942e918d5aeb1db5d7c9435 (diff)
downloadmeson-cb614e8ff6c7b0775686c846c5b6e12a332c76fc.zip
meson-cb614e8ff6c7b0775686c846c5b6e12a332c76fc.tar.gz
meson-cb614e8ff6c7b0775686c846c5b6e12a332c76fc.tar.bz2
llvm: Add llvm-config80 for FreeBSD
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/dependencies/dev.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/mesonbuild/dependencies/dev.py b/mesonbuild/dependencies/dev.py
index 103ca74..3967dc5 100644
--- a/mesonbuild/dependencies/dev.py
+++ b/mesonbuild/dependencies/dev.py
@@ -207,12 +207,10 @@ class LLVMDependency(ConfigToolDependency):
# Ordered list of llvm-config binaries to try. Start with base, then try
# newest back to oldest (3.5 is arbitrary), and finally the devel version.
# Please note that llvm-config-6.0 is a development snapshot and it should
- # not be moved to the beginning of the list. The only difference between
- # llvm-config-8 and llvm-config-devel is that the former is used by
- # Debian and the latter is used by FreeBSD.
+ # not be moved to the beginning of the list.
tools = [
'llvm-config', # base
- 'llvm-config-8', # No FreeBSD release for 8 yet
+ 'llvm-config-8', 'llvm-config80',
'llvm-config-7', 'llvm-config70',
'llvm-config-6.0', 'llvm-config60',
'llvm-config-5.0', 'llvm-config50',
@@ -222,7 +220,8 @@ class LLVMDependency(ConfigToolDependency):
'llvm-config-3.7', 'llvm-config37',
'llvm-config-3.6', 'llvm-config36',
'llvm-config-3.5', 'llvm-config35',
- 'llvm-config-9', 'llvm-config-devel', # development snapshot
+ 'llvm-config-9', # Debian development snapshot
+ 'llvm-config-devel', # FreeBSD development snapshot
]
tool_name = 'llvm-config'
__cpp_blacklist = {'-DNDEBUG'}