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."
This commit is contained in:
Jesse Natalie 2020-04-09 11:07:57 -07:00 committed by Jussi Pakkanen
parent 700cca809b
commit f655518545
1 changed files with 1 additions and 0 deletions

View File

@ -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: