[libcxx-commits] [libcxx] ade336d - Revert "[libc++][ci] Disable generating debug information."

Mark de Wever via libcxx-commits libcxx-commits at lists.llvm.org
Wed Dec 8 09:00:31 PST 2021


Author: Mark de Wever
Date: 2021-12-08T17:58:51+01:00
New Revision: ade336dee4762572bbd03085d96ce72bdbbb123b

URL: https://github.com/llvm/llvm-project/commit/ade336dee4762572bbd03085d96ce72bdbbb123b
DIFF: https://github.com/llvm/llvm-project/commit/ade336dee4762572bbd03085d96ce72bdbbb123b.diff

LOG: Revert "[libc++][ci] Disable generating debug information."

The bug this patch works around prevents D70631 to land.
Remove the work-around since it's no longer needed.

Added: 
    

Modified: 
    libcxx/utils/ci/run-buildbot

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index 1af4478a30c7..5c5b1f964859 100755
--- a/libcxx/utils/ci/run-buildbot
+++ b/libcxx/utils/ci/run-buildbot
@@ -460,14 +460,11 @@ bootstrapping-build)
     #       because that provides coverage for some specific Clang failures
     #       we've been seeing recently, however it would be better to instead
     #       run all CI configurations against a Clang that has assertions enabled.
-    #
-    # The generation of debug information is disabled since that causes an ICE.
-    # llvm.org/PR52584
     ${CMAKE} \
           -S "${MONOREPO_ROOT}/llvm" \
           -B "${BUILD_DIR}" \
           -GNinja -DCMAKE_MAKE_PROGRAM="${NINJA}" \
-          -DCMAKE_BUILD_TYPE=Release \
+          -DCMAKE_BUILD_TYPE=RelWithDebInfo \
           -DCMAKE_INSTALL_PREFIX="${INSTALL_DIR}" \
           -DLLVM_ENABLE_PROJECTS="clang" \
           -DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi" \


        


More information about the libcxx-commits mailing list