[libcxx-commits] [libcxx] c632ee1 - [libc++] Shows the detailed compiler version info.
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Sep 16 07:15:45 PDT 2022
Author: Mark de Wever
Date: 2022-09-16T16:15:36+02:00
New Revision: c632ee1c5d658c77601ab4a44c83fe5c548e7570
URL: https://github.com/llvm/llvm-project/commit/c632ee1c5d658c77601ab4a44c83fe5c548e7570
DIFF: https://github.com/llvm/llvm-project/commit/c632ee1c5d658c77601ab4a44c83fe5c548e7570.diff
LOG: [libc++] Shows the detailed compiler version info.
The libc++ pre-commit CI uses Clang nightly builds. Currently it's not
possible to determine the exact version used since CMake doesn't show
this information by default. Instead use the --version flag to get this
information.
Reviewed By: #libc, ldionne
Differential Revision: https://reviews.llvm.org/D133122
Added:
Modified:
libcxx/utils/ci/run-buildbot
Removed:
################################################################################
diff --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index a5ec93559ad8..91f203a6d4e0 100755
--- a/libcxx/utils/ci/run-buildbot
+++ b/libcxx/utils/ci/run-buildbot
@@ -148,6 +148,8 @@ function check-cxx-benchmarks() {
${CMAKE} --version
${NINJA} --version
+if [ ! -z "${CXX}" ]; then ${CXX} --version; fi
+
case "${BUILDER}" in
check-format)
clean
More information about the libcxx-commits
mailing list