[compiler-rt] a036d18 - [compiler-rt] Reduce build output for tests
    via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Wed Nov  6 11:58:44 PST 2024
    
    
  
Author: Alexander Richardson
Date: 2024-11-06T11:58:41-08:00
New Revision: a036d18f1a1b74fb8c13ea5bc4b02ce4fe40c997
URL: https://github.com/llvm/llvm-project/commit/a036d18f1a1b74fb8c13ea5bc4b02ce4fe40c997
DIFF: https://github.com/llvm/llvm-project/commit/a036d18f1a1b74fb8c13ea5bc4b02ce4fe40c997.diff
LOG: [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
Added: 
    
Modified: 
    compiler-rt/cmake/Modules/AddCompilerRT.cmake
Removed: 
    
################################################################################
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=<INSTALL_DIR>
+               -DCMAKE_INSTALL_MESSAGE=LAZY
                -DCMAKE_TRY_COMPILE_TARGET_TYPE=STATIC_LIBRARY
                -DLLVM_ENABLE_RUNTIMES=libcxx|libcxxabi
                -DLIBCXXABI_USE_LLVM_UNWINDER=OFF
        
    
    
More information about the llvm-commits
mailing list