[libcxx-commits] [libcxx] 692dd56 - [libc++] Use $CXX instead of 'c++' in run-buildbot
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Apr 21 04:15:34 PDT 2023
Author: Louis Dionne
Date: 2023-04-21T07:15:16-04:00
New Revision: 692dd56e4b3df77ee3a25d714084640b3c041cb9
URL: https://github.com/llvm/llvm-project/commit/692dd56e4b3df77ee3a25d714084640b3c041cb9
DIFF: https://github.com/llvm/llvm-project/commit/692dd56e4b3df77ee3a25d714084640b3c041cb9.diff
LOG: [libc++] Use $CXX instead of 'c++' in run-buildbot
We don't have `c++` anymore in the Docker image, but the script does
require $CXX to be in the environment so that should always work.
Differential Revision: https://reviews.llvm.org/D148830
Added:
Modified:
libcxx/utils/ci/run-buildbot
Removed:
################################################################################
diff --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index c8c6e3cae6970..cd70d73a52f5d 100755
--- a/libcxx/utils/ci/run-buildbot
+++ b/libcxx/utils/ci/run-buildbot
@@ -337,7 +337,7 @@ bootstrapping-build)
-DCMAKE_INSTALL_PREFIX="${INSTALL_DIR}" \
-DLLVM_ENABLE_PROJECTS="clang" \
-DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi;libunwind" \
- -DLLVM_RUNTIME_TARGETS="$(c++ --print-target-triple)" \
+ -DLLVM_RUNTIME_TARGETS="$(${CXX} --print-target-triple)" \
-DLLVM_TARGETS_TO_BUILD="host" \
-DRUNTIMES_BUILD_ALLOW_DARWIN=ON \
-DLLVM_ENABLE_ASSERTIONS=ON
More information about the libcxx-commits
mailing list