diff options
author | Chris Bieneman <beanz@apple.com> | 2016-11-19 02:31:14 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2016-11-19 02:31:14 +0000 |
commit | e525ef9cd13b4cd1626e9c26b465cfec34cc32ea (patch) | |
tree | ae08057f0ab3a27c292c327fd90aa70f2bac7226 /llvm/tools | |
parent | 041c1102eb383b8bcd8e1550f69e9f1fd7806d85 (diff) | |
download | bcm5719-llvm-e525ef9cd13b4cd1626e9c26b465cfec34cc32ea.tar.gz bcm5719-llvm-e525ef9cd13b4cd1626e9c26b465cfec34cc32ea.zip |
[CMake] llvm-dis depends on intrinsics_gen
llvm-dis.cpp has the following include chain:
llvm/Bitcode/BitcodeReader.h
llvm/IR/ModuleSummaryIndex.h
llvm/IR/Module.h
llvm/IR/Function.h
llvm/IR/Argument.h
llvm/IR/Attributes.h
llvm/IR/Attributes.gen
This means llvm-dis needs to depend on intrinsics_gen.
llvm-svn: 287428
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/llvm-dis/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/tools/llvm-dis/CMakeLists.txt b/llvm/tools/llvm-dis/CMakeLists.txt index 06ac051602e..5804754ba69 100644 --- a/llvm/tools/llvm-dis/CMakeLists.txt +++ b/llvm/tools/llvm-dis/CMakeLists.txt @@ -6,4 +6,7 @@ set(LLVM_LINK_COMPONENTS add_llvm_tool(llvm-dis llvm-dis.cpp + + DEPENDS + intrinsics_gen ) |