[libcxx-commits] [PATCH] D105704: [libcxx][CI] Work around Arm buildkite failures
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Jul 9 12:30:08 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rGf8bef4734845: [libcxx][CI] Work around Arm buildkite failures (authored by DavidSpickett, committed by ldionne).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D105704/new/
https://reviews.llvm.org/D105704
Files:
libcxx/utils/ci/run-buildbot
Index: libcxx/utils/ci/run-buildbot
===================================================================
--- libcxx/utils/ci/run-buildbot
+++ libcxx/utils/ci/run-buildbot
@@ -469,11 +469,15 @@
${NINJA} -vC "${BUILD_DIR}/libcxxabi" check-cxxabi
;;
aarch64)
+ export CC=/usr/local/bin/cc
+ export CXX=/usr/local/bin/c++
clean
generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/AArch64.cmake"
check-cxx-cxxabi
;;
aarch64-noexceptions)
+ export CC=/usr/local/bin/cc
+ export CXX=/usr/local/bin/c++
clean
generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/AArch64.cmake" \
-DLIBCXX_ENABLE_EXCEPTIONS=OFF \
@@ -482,22 +486,30 @@
;;
# Aka Armv8 32 bit
armv8)
+ export CC=/usr/local/bin/cc
+ export CXX=/usr/local/bin/c++
clean
generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Armv8Arm.cmake"
check-cxx-cxxabi
;;
armv8-noexceptions)
+ export CC=/usr/local/bin/cc
+ export CXX=/usr/local/bin/c++
clean
generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Armv8Thumb-noexceptions.cmake"
check-cxx-cxxabi
;;
# Armv7 32 bit. One building Arm only one Thumb only code.
armv7)
+ export CC=/usr/local/bin/cc
+ export CXX=/usr/local/bin/c++
clean
generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Armv7Arm.cmake"
check-cxx-cxxabi
;;
armv7-noexceptions)
+ export CC=/usr/local/bin/cc
+ export CXX=/usr/local/bin/c++
clean
generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Armv7Thumb-noexceptions.cmake"
check-cxx-cxxabi
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D105704.357600.patch
Type: text/x-patch
Size: 1579 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210709/1be2f61a/attachment.bin>
More information about the libcxx-commits
mailing list