mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-27 15:41:46 +00:00
e1a539b0ec
Summary: This patch introduces DataReader, a module responsible for parsing llvm flo data files into in-memory data structures. (cherry picked from FBD2515754)
19 lines
238 B
CMake
19 lines
238 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
${LLVM_TARGETS_TO_BUILD}
|
|
CodeGen
|
|
Core
|
|
MC
|
|
MCDisassembler
|
|
MCParser
|
|
Object
|
|
Orcjit
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(llvm-flo
|
|
llvm-flo.cpp
|
|
BinaryBasicBlock.cpp
|
|
BinaryFunction.cpp
|
|
DataReader.cpp
|
|
)
|