From dd7369a3161dd6b1c491d2f2546599b7594e2894 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Wed, 28 Nov 2018 22:10:01 +0000 Subject: [PATCH] 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 --- lldb/cmake/modules/LLDBStandalone.cmake | 1 + 1 file changed, 1 insertion(+) 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) -- 2.7.4