mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
8e98660f03
The LLVM tools can be used as a replacement for binutils, in which case it's convenient to create symlinks with the binutils names. Add support for these symlinks in the build system. As with any other llvm tool symlinks, the user can limit the installed symlinks by only adding the desired ones to `LLVM_TOOLCHAIN_TOOLS`. Differential Revision: https://reviews.llvm.org/D39530 llvm-svn: 317272
14 lines
196 B
CMake
14 lines
196 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Core
|
|
Object
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(llvm-strings
|
|
llvm-strings.cpp
|
|
)
|
|
|
|
if(LLVM_INSTALL_BINUTILS_SYMLINKS)
|
|
add_llvm_tool_symlink(strings llvm-strings)
|
|
endif()
|