summaryrefslogtreecommitdiff
path: root/clang/runtime
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2016-06-28 20:30:52 +0000
committerChris Bieneman <beanz@apple.com>2016-06-28 20:30:52 +0000
commit91c66275e971abe7cd6f86d31d572c009198d7ed (patch)
tree4a21eb829631967288c3229875f5fbf6bb6c6a7b /clang/runtime
parentb1556c42ced74d34c0178e19dd8b0b046862beee (diff)
downloadllvm-91c66275e971abe7cd6f86d31d572c009198d7ed.tar.gz
[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
Diffstat (limited to 'clang/runtime')
-rw-r--r--clang/runtime/CMakeLists.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/runtime/CMakeLists.txt b/clang/runtime/CMakeLists.txt
index 2f8056efcd5f..814857f49c4d 100644
--- a/clang/runtime/CMakeLists.txt
+++ b/clang/runtime/CMakeLists.txt
@@ -102,7 +102,8 @@ if(LLVM_BUILD_EXTERNAL_COMPILER_RT AND EXISTS ${COMPILER_RT_SRC_ROOT}/)
DEPENDS compiler-rt
COMMAND "${CMAKE_COMMAND}"
-DCMAKE_INSTALL_COMPONENT=compiler-rt
- -P "${CMAKE_BINARY_DIR}/cmake_install.cmake")
+ -P "${CMAKE_BINARY_DIR}/cmake_install.cmake"
+ USES_TERMINAL)
# Add top-level targets that build specific compiler-rt runtimes.
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}/)
COMMAND ${build_runtime_cmd}
DEPENDS compiler-rt-configure
WORKING_DIRECTORY ${BINARY_DIR}
- VERBATIM)
+ VERBATIM USES_TERMINAL)
endforeach()
if(LLVM_INCLUDE_TESTS)