dependencies/dev: Switch order of llvm dependency finders

Cmake ignores shared vs dynamic linking, and always returns static. This
went unnoticed, but results in regresssions for mesa. We need to fix
cmake, but with 0.51.1 due out shortly switching the order provides a
quick fix to restore expected functionality seems acceptable.

Fixes #5568
This commit is contained in:
Dylan Baker 2019-07-01 16:06:18 -07:00 committed by Jussi Pakkanen
parent 38f2034162
commit e3140fa2d2
1 changed files with 3 additions and 3 deletions

View File

@ -460,12 +460,12 @@ class LLVMDependency(ExternalDependency):
methods = cls._process_method_kw(kwargs)
candidates = []
if DependencyMethods.CMAKE in methods:
candidates.append(functools.partial(LLVMDependencyCMake, env, kwargs))
if DependencyMethods.CONFIG_TOOL in methods:
candidates.append(functools.partial(LLVMDependencyConfigTool, env, kwargs))
if DependencyMethods.CMAKE in methods:
candidates.append(functools.partial(LLVMDependencyCMake, env, kwargs))
return candidates
@staticmethod