[libcxx-commits] [PATCH] D103863: [libcxx][ci] enables assertions for runtimes-build
Christopher Di Bella via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Jun 7 17:11:18 PDT 2021
cjdb created this revision.
cjdb added reviewers: ldionne, Quuxplusone, zoecarver, Mordante.
Herald added a subscriber: arichardson.
cjdb requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added a reviewer: libc++.
This will catch nasty Clang bugs like
https://bugs.llvm.org/show_bug.cgi?id=50592 before we merge stuff into
libc++ main.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D103863
Files:
libcxx/utils/ci/run-buildbot
Index: libcxx/utils/ci/run-buildbot
===================================================================
--- libcxx/utils/ci/run-buildbot
+++ libcxx/utils/ci/run-buildbot
@@ -442,7 +442,8 @@
-DCMAKE_INSTALL_PREFIX="${INSTALL_DIR}" \
-DLLVM_ENABLE_PROJECTS="clang" \
-DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi" \
- -DLLVM_RUNTIME_TARGETS="x86_64-unknown-linux-gnu"
+ -DLLVM_RUNTIME_TARGETS="x86_64-unknown-linux-gnu" \
+ -DLLVM_ENABLE_ASSERTIONS=ON
echo "+++ Running the libc++ and libc++abi tests"
${NINJA} -C "${BUILD_DIR}" check-runtimes
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D103863.350457.patch
Type: text/x-patch
Size: 609 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210608/61cbde51/attachment.bin>
More information about the libcxx-commits
mailing list