aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies/dev.py
diff options
context:
space:
mode:
authorJesse Natalie <jenatali@microsoft.com>2020-04-09 11:07:57 -0700
committerJussi Pakkanen <jpakkane@gmail.com>2020-04-10 16:41:29 +0300
commitf655518545e4ac97526f3fedb197157bf43a1b5c (patch)
tree64a0ded8277f81b190a446897fc5bdb4b1c09080 /mesonbuild/dependencies/dev.py
parent700cca809b25b5a068d2d6efd5138e8427f48bde (diff)
downloadmeson-f655518545e4ac97526f3fedb197157bf43a1b5c.zip
meson-f655518545e4ac97526f3fedb197157bf43a1b5c.tar.gz
meson-f655518545e4ac97526f3fedb197157bf43a1b5c.tar.bz2
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."
Diffstat (limited to 'mesonbuild/dependencies/dev.py')
-rw-r--r--mesonbuild/dependencies/dev.py1
1 files changed, 1 insertions, 0 deletions
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: