Skip to content

Commit 692dd56

Browse files
committed
[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
1 parent a7bf92a commit 692dd56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/utils/ci/run-buildbot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ bootstrapping-build)
337337
-DCMAKE_INSTALL_PREFIX="${INSTALL_DIR}" \
338338
-DLLVM_ENABLE_PROJECTS="clang" \
339339
-DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi;libunwind" \
340-
-DLLVM_RUNTIME_TARGETS="$(c++ --print-target-triple)" \
340+
-DLLVM_RUNTIME_TARGETS="$(${CXX} --print-target-triple)" \
341341
-DLLVM_TARGETS_TO_BUILD="host" \
342342
-DRUNTIMES_BUILD_ALLOW_DARWIN=ON \
343343
-DLLVM_ENABLE_ASSERTIONS=ON

0 commit comments

Comments
 (0)