Skip to content

Commit 91c6627

Browse files
author
Chris Bieneman
committed
[CMake] Adding USES_TERMINAL to a few additional custom targets
These are all long-running commands that should be in the ninja console job pool. llvm-svn: 274056
1 parent b1556c4 commit 91c6627

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

clang/runtime/CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ if(LLVM_BUILD_EXTERNAL_COMPILER_RT AND EXISTS ${COMPILER_RT_SRC_ROOT}/)
102102
DEPENDS compiler-rt
103103
COMMAND "${CMAKE_COMMAND}"
104104
-DCMAKE_INSTALL_COMPONENT=compiler-rt
105-
-P "${CMAKE_BINARY_DIR}/cmake_install.cmake")
105+
-P "${CMAKE_BINARY_DIR}/cmake_install.cmake"
106+
USES_TERMINAL)
106107

107108
# Add top-level targets that build specific compiler-rt runtimes.
108109
set(COMPILER_RT_RUNTIMES asan builtins dfsan lsan msan profile tsan ubsan)
@@ -112,7 +113,7 @@ if(LLVM_BUILD_EXTERNAL_COMPILER_RT AND EXISTS ${COMPILER_RT_SRC_ROOT}/)
112113
COMMAND ${build_runtime_cmd}
113114
DEPENDS compiler-rt-configure
114115
WORKING_DIRECTORY ${BINARY_DIR}
115-
VERBATIM)
116+
VERBATIM USES_TERMINAL)
116117
endforeach()
117118

118119
if(LLVM_INCLUDE_TESTS)

0 commit comments

Comments
 (0)