From a036d18f1a1b74fb8c13ea5bc4b02ce4fe40c997 Mon Sep 17 00:00:00 2001 From: Alexander Richardson Date: Wed, 6 Nov 2024 11:58:41 -0800 Subject: [PATCH] [compiler-rt] Reduce build output for tests Use CMAKE_INSTALL_MESSAGE=LAZY to only print the local libc++(abi) installation messages for changed files instead of all files. Pull Request: https://github.com/llvm/llvm-project/pull/115085 --- compiler-rt/cmake/Modules/AddCompilerRT.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler-rt/cmake/Modules/AddCompilerRT.cmake b/compiler-rt/cmake/Modules/AddCompilerRT.cmake index abbeea0c493a75..6b96a5147753e7 100644 --- a/compiler-rt/cmake/Modules/AddCompilerRT.cmake +++ b/compiler-rt/cmake/Modules/AddCompilerRT.cmake @@ -690,6 +690,7 @@ macro(add_custom_libcxx name prefix) -DCMAKE_CXX_FLAGS=${LIBCXX_CXX_FLAGS} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX= + -DCMAKE_INSTALL_MESSAGE=LAZY -DCMAKE_TRY_COMPILE_TARGET_TYPE=STATIC_LIBRARY -DLLVM_ENABLE_RUNTIMES=libcxx|libcxxabi -DLIBCXXABI_USE_LLVM_UNWINDER=OFF