[Lldb-commits] [lldb] r347814 - Make standalone build find tabelgen
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 28 14:10:01 PST 2018
Author: jdevlieghere
Date: Wed Nov 28 14:10:01 2018
New Revision: 347814
URL: http://llvm.org/viewvc/llvm-project?rev=347814&view=rev
Log:
Make standalone build find tabelgen
The standalone build couldn't find tablegen because we didn't include
it. This patch rectifies that.
Modified:
lldb/trunk/cmake/modules/LLDBStandalone.cmake
Modified: lldb/trunk/cmake/modules/LLDBStandalone.cmake
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/cmake/modules/LLDBStandalone.cmake?rev=347814&r1=347813&r2=347814&view=diff
==============================================================================
--- lldb/trunk/cmake/modules/LLDBStandalone.cmake (original)
+++ lldb/trunk/cmake/modules/LLDBStandalone.cmake Wed Nov 28 14:10:01 2018
@@ -83,6 +83,7 @@ if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURR
endif()
include(AddLLVM)
+ include(TableGen)
include(HandleLLVMOptions)
include(CheckAtomic)
More information about the lldb-commits
mailing list