From f655518545e4ac97526f3fedb197157bf43a1b5c Mon Sep 17 00:00:00 2001 From: Jesse Natalie Date: Thu, 9 Apr 2020 11:07:57 -0700 Subject: Log when ignoring LLVM because dynamic was requested Without this, there's tons of log output about finding LLVM, followed by "couldn't find LLVM." --- mesonbuild/dependencies/dev.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mesonbuild/dependencies/dev.py b/mesonbuild/dependencies/dev.py index 72dda62..b6ac331 100644 --- a/mesonbuild/dependencies/dev.py +++ b/mesonbuild/dependencies/dev.py @@ -397,6 +397,7 @@ class LLVMDependencyCMake(CMakeDependency): # cmake if dynamic is required if not self.static: self.is_found = False + mlog.warning('Ignoring LLVM CMake dependency because dynamic was requested') return if self.traceparser is None: -- cgit v1.1