[CMake] llvm-nm depends on intrinsics_gen

llvm-nm.cpp has the following include chain:

llvm/IR/Function.h
llvm/IR/Argument.h
llvm/IR/Attributes.h
llvm/IR/Attributes.gen

This means llvm-nm needs to depend on intrinsics_gen.

llvm-svn: 287432
This commit is contained in:
Chris Bieneman 2016-11-19 03:16:33 +00:00
parent b2b18d2ada
commit 458796ddf8
1 changed files with 3 additions and 0 deletions

View File

@ -9,4 +9,7 @@ set(LLVM_LINK_COMPONENTS
add_llvm_tool(llvm-nm
llvm-nm.cpp
DEPENDS
intrinsics_gen
)