llvm/tools/llc/CMakeLists.txt
Matt Arsenault 8b76c990ba llc: Update link components
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@292198 91177308-0d34-0410-b5e6-96231b3b80d8
2017-01-17 05:47:03 +00:00

28 lines
339 B
CMake

set(LLVM_LINK_COMPONENTS
${LLVM_TARGETS_TO_BUILD}
Analysis
AsmPrinter
CodeGen
Core
IRReader
MC
MIRParser
ScalarOpts
SelectionDAG
Support
Target
TransformUtils
Vectorize
)
# Support plugins.
set(LLVM_NO_DEAD_STRIP 1)
add_llvm_tool(llc
llc.cpp
DEPENDS
intrinsics_gen
)
export_executable_symbols(llc)