[llvm] r330727 - Remove LLVM_INSTALL_CCTOOLS_SYMLINKS
Nico Weber via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 24 08:41:03 PDT 2018
Author: nico
Date: Tue Apr 24 08:41:02 2018
New Revision: 330727
URL: http://llvm.org/viewvc/llvm-project?rev=330727&view=rev
Log:
Remove LLVM_INSTALL_CCTOOLS_SYMLINKS
It used to symlink dsymutil to llvm-dsymutil, but after r327790 llvm's dsymutil
binary is now called dsymutil without prefix.
r327792 then reversed the direction of the symlink if
LLVM_INSTALL_CCTOOLS_SYMLINKS was set, but that looks like a buildfix and not
like something anyone should need.
https://reviews.llvm.org/D45966
Modified:
llvm/trunk/CMakeLists.txt
llvm/trunk/docs/CMake.rst
llvm/trunk/tools/dsymutil/CMakeLists.txt
Modified: llvm/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/CMakeLists.txt?rev=330727&r1=330726&r2=330727&view=diff
==============================================================================
--- llvm/trunk/CMakeLists.txt (original)
+++ llvm/trunk/CMakeLists.txt Tue Apr 24 08:41:02 2018
@@ -194,9 +194,6 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS 1)
option(LLVM_INSTALL_BINUTILS_SYMLINKS
"Install symlinks from the binutils tool names to the corresponding LLVM tools." OFF)
-option(LLVM_INSTALL_CCTOOLS_SYMLINKS
- "Install symlinks from the cctools tool names to the corresponding LLVM tools." OFF)
-
option(LLVM_INSTALL_UTILS "Include utility binaries in the 'install' target." OFF)
option(LLVM_INSTALL_TOOLCHAIN_ONLY "Only include toolchain files in the 'install' target." OFF)
Modified: llvm/trunk/docs/CMake.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CMake.rst?rev=330727&r1=330726&r2=330727&view=diff
==============================================================================
--- llvm/trunk/docs/CMake.rst (original)
+++ llvm/trunk/docs/CMake.rst Tue Apr 24 08:41:02 2018
@@ -228,10 +228,6 @@ LLVM-specific variables
Install symlinks from the binutils tool names to the corresponding LLVM tools.
For example, ar will be symlinked to llvm-ar.
-**LLVM_INSTALL_CCTOOLS_SYMLINKS**:BOOL
- Install symliks from the cctools tool names to the corresponding LLVM tools.
- For example, dsymutil will be symlinked to llvm-dsymutil.
-
**LLVM_BUILD_EXAMPLES**:BOOL
Build LLVM examples. Defaults to OFF. Targets for building each example are
generated in any case. See documentation for *LLVM_BUILD_TOOLS* above for more
Modified: llvm/trunk/tools/dsymutil/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/dsymutil/CMakeLists.txt?rev=330727&r1=330726&r2=330727&view=diff
==============================================================================
--- llvm/trunk/tools/dsymutil/CMakeLists.txt (original)
+++ llvm/trunk/tools/dsymutil/CMakeLists.txt Tue Apr 24 08:41:02 2018
@@ -25,8 +25,3 @@ add_llvm_tool(dsymutil
if(APPLE)
target_link_libraries(dsymutil PRIVATE "-framework CoreFoundation")
endif(APPLE)
-
-if(LLVM_INSTALL_CCTOOLS_SYMLINKS)
- add_llvm_tool_symlink(llvm-dsymutil dsymutil)
-endif()
-
More information about the llvm-commits
mailing list