1
0
mirror of https://github.com/RPCS3/llvm.git synced 2025-04-05 06:41:51 +00:00

[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.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287432 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Bieneman 2016-11-19 03:16:33 +00:00
parent f11a790abc
commit 252aa32d02

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