[libcxx-commits] [libcxx] [lib++][CI] Changes bootstrap build type. (PR #88175)

via libcxx-commits libcxx-commits at lists.llvm.org
Tue Apr 9 11:38:17 PDT 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-libcxx

Author: Mark de Wever (mordante)

<details>
<summary>Changes</summary>

The RelWithDebInfo generates a few GB of debug info that is not used. Instead use the normal Release build for testing.

---
Full diff: https://github.com/llvm/llvm-project/pull/88175.diff


1 Files Affected:

- (modified) libcxx/utils/ci/run-buildbot (+1-1) 


``````````diff
diff --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index 2905745355b68e..a6f3eb174308b4 100755
--- a/libcxx/utils/ci/run-buildbot
+++ b/libcxx/utils/ci/run-buildbot
@@ -374,7 +374,7 @@ bootstrapping-build)
           -B "${BUILD_DIR}" \
           -GNinja -DCMAKE_MAKE_PROGRAM="${NINJA}" \
           -DCMAKE_CXX_COMPILER_LAUNCHER="ccache" \
-          -DCMAKE_BUILD_TYPE=RelWithDebInfo \
+          -DCMAKE_BUILD_TYPE=Release \
           -DCMAKE_INSTALL_PREFIX="${INSTALL_DIR}" \
           -DLLVM_ENABLE_PROJECTS="clang" \
           -DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi;libunwind" \

``````````

</details>


https://github.com/llvm/llvm-project/pull/88175


More information about the libcxx-commits mailing list