mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
96b0ffdce8
The module splitter splits a module into linkable partitions. It will be used to implement parallel LTO code generation. This initial version of the splitter does not attempt to deal with the somewhat subtle symbol visibility issues around module splitting. These will be dealt with in a future change. Differential Revision: http://reviews.llvm.org/D12132 llvm-svn: 245662
12 lines
133 B
CMake
12 lines
133 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
TransformUtils
|
|
BitWriter
|
|
Core
|
|
IRReader
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(llvm-split
|
|
llvm-split.cpp
|
|
)
|