[compiler-rt] r320808 - Added a separate install target for compilert-rt-headers

Ilya Biryukov via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 15 05:20:13 PST 2017


Author: ibiryukov
Date: Fri Dec 15 05:20:13 2017
New Revision: 320808

URL: http://llvm.org/viewvc/llvm-project?rev=320808&view=rev
Log:
Added a separate install target for compilert-rt-headers

Summary:
This patch adds a new install target `install-compilert-rt-headers`,
that is similar to `install-clang-headers`.

It allows to install the headers without installing all of
compiler-rt.

Reviewers: alekseyshl, beanz

Reviewed By: beanz

Subscribers: smeenai, beanz, mgorny, #sanitizers, kcc, llvm-commits

Differential Revision: https://reviews.llvm.org/D41244

Modified:
    compiler-rt/trunk/include/CMakeLists.txt

Modified: compiler-rt/trunk/include/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/include/CMakeLists.txt?rev=320808&r1=320807&r2=320808&view=diff
==============================================================================
--- compiler-rt/trunk/include/CMakeLists.txt (original)
+++ compiler-rt/trunk/include/CMakeLists.txt Fri Dec 15 05:20:13 2017
@@ -23,7 +23,7 @@ endif(COMPILER_RT_BUILD_XRAY)
 
 set(COMPILER_RT_HEADERS
   ${SANITIZER_HEADERS}
-	${XRAY_HEADERS})
+  ${XRAY_HEADERS})
 
 set(output_dir ${COMPILER_RT_OUTPUT_DIR}/include)
 
@@ -45,9 +45,27 @@ set_target_properties(compiler-rt-header
 
 # Install sanitizer headers.
 install(FILES ${SANITIZER_HEADERS}
+  COMPONENT compiler-rt-headers
   PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
   DESTINATION ${COMPILER_RT_INSTALL_PATH}/include/sanitizer)
 # Install xray headers.
 install(FILES ${XRAY_HEADERS}
+  COMPONENT compiler-rt-headers
   PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
   DESTINATION ${COMPILER_RT_INSTALL_PATH}/include/xray)
+
+if (NOT CMAKE_CONFIGURATION_TYPES) # don't add this for IDEs.
+  add_custom_target(install-compiler-rt-headers
+                    DEPENDS compiler-rt-headers
+                    COMMAND "${CMAKE_COMMAND}"
+                            -DCMAKE_INSTALL_COMPONENT="compiler-rt-headers"
+                            -P "${CMAKE_BINARY_DIR}/cmake_install.cmake"
+                    USES_TERMINAL)
+  add_custom_target(install-compiler-rt-headers-stripped
+                    DEPENDS compiler-rt-headers
+                    COMMAND "${CMAKE_COMMAND}"
+                            -DCMAKE_INSTALL_COMPONENT="compiler-rt-headers"
+                            -DCMAKE_INSTALL_DO_STRIP=1
+                            -P "${CMAKE_BINARY_DIR}/cmake_install.cmake"
+                    USES_TERMINAL)
+endif()




More information about the llvm-commits mailing list