mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-04 10:04:33 +00:00
c1e784cb78
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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@245662 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
)
|