diff options
author | Jesse Natalie <jenatali@microsoft.com> | 2020-04-09 11:07:57 -0700 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-04-10 16:41:29 +0300 |
commit | f655518545e4ac97526f3fedb197157bf43a1b5c (patch) | |
tree | 64a0ded8277f81b190a446897fc5bdb4b1c09080 /mesonbuild/dependencies/dev.py | |
parent | 700cca809b25b5a068d2d6efd5138e8427f48bde (diff) | |
download | meson-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.py | 1 |
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: |