mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
7680f32409
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
14 lines
139 B
CMake
14 lines
139 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
AsmParser
|
|
BitWriter
|
|
Core
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(llvm-as
|
|
llvm-as.cpp
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
)
|