1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

[CMake] llvm-as depends on intrinsics_gen

llvm-as.cpp has the following include chain:

llvm/Bitcode/BitcodeWriter.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-as needs to depend on intrinsics_gen.

llvm-svn: 287423
This commit is contained in:
Chris Bieneman 2016-11-19 02:15:04 +00:00
parent be368c6be8
commit 7680f32409

View File

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