From: Jonas Devlieghere Date: Wed, 28 Nov 2018 22:10:01 +0000 (+0000) Subject: Make standalone build find tabelgen X-Git-Tag: llvmorg-8.0.0-rc1~3364 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dd7369a3161dd6b1c491d2f2546599b7594e2894;p=platform%2Fupstream%2Fllvm.git Make standalone build find tabelgen The standalone build couldn't find tablegen because we didn't include it. This patch rectifies that. llvm-svn: 347814 --- diff --git a/lldb/cmake/modules/LLDBStandalone.cmake b/lldb/cmake/modules/LLDBStandalone.cmake index 742c464..e74bcd6 100644 --- a/lldb/cmake/modules/LLDBStandalone.cmake +++ b/lldb/cmake/modules/LLDBStandalone.cmake @@ -83,6 +83,7 @@ if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR) endif() include(AddLLVM) + include(TableGen) include(HandleLLVMOptions) include(CheckAtomic)