diff options
| author | Jonas Devlieghere <jonas@devlieghere.com> | 2018-11-28 22:10:01 +0000 |
|---|---|---|
| committer | Jonas Devlieghere <jonas@devlieghere.com> | 2018-11-28 22:10:01 +0000 |
| commit | dd7369a3161dd6b1c491d2f2546599b7594e2894 (patch) | |
| tree | 4cbbe1d58e4ce403128e3b55073be15ab8e14d0f | |
| parent | e60bc53b4611d98352345e48be4c25214e0bf858 (diff) | |
| download | bcm5719-llvm-dd7369a3161dd6b1c491d2f2546599b7594e2894.tar.gz bcm5719-llvm-dd7369a3161dd6b1c491d2f2546599b7594e2894.zip | |
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
| -rw-r--r-- | lldb/cmake/modules/LLDBStandalone.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/cmake/modules/LLDBStandalone.cmake b/lldb/cmake/modules/LLDBStandalone.cmake index 742c464036a..e74bcd6eec9 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) |

