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

Mark de Wever via libcxx-commits libcxx-commits at lists.llvm.org
Tue Apr 9 11:37:46 PDT 2024


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

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

>From e45c8fefc73ed41634a2e5c906c9a158365154bc Mon Sep 17 00:00:00 2001
From: Mark de Wever <koraq at xs4all.nl>
Date: Tue, 9 Apr 2024 20:35:43 +0200
Subject: [PATCH] [lib++][CI] Changes bootstrap build type.

The RelWithDebInfo generates a few GB of debug info that is not used.
Instead use the normal Release build for testing.
---
 libcxx/utils/ci/run-buildbot | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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" \



More information about the libcxx-commits mailing list