[Lldb-commits] [lldb] r373112 - [CMake] Depend on clang-tablegen-targets
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Fri Sep 27 12:07:06 PDT 2019
Author: jdevlieghere
Date: Fri Sep 27 12:07:06 2019
New Revision: 373112
URL: http://llvm.org/viewvc/llvm-project?rev=373112&view=rev
Log:
[CMake] Depend on clang-tablegen-targets
The ClangDriverOptions target is not available for standalone builds.
Thanks Alex for pointing this out!
Modified:
lldb/trunk/source/Core/CMakeLists.txt
Modified: lldb/trunk/source/Core/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/CMakeLists.txt?rev=373112&r1=373111&r2=373112&view=diff
==============================================================================
--- lldb/trunk/source/Core/CMakeLists.txt (original)
+++ lldb/trunk/source/Core/CMakeLists.txt Fri Sep 27 12:07:06 2019
@@ -66,7 +66,7 @@ add_lldb_library(lldbCore
ValueObjectVariable.cpp
DEPENDS
- ClangDriverOptions
+ clang-tablegen-targets
LINK_LIBS
clangAST
More information about the lldb-commits
mailing list