From c4ee443f238c384c2ffde271e8f20637cea4a404 Mon Sep 17 00:00:00 2001 From: Vladimir Vereschaka Date: Tue, 2 Sep 2025 11:10:50 -0700 Subject: [PATCH] Revert "Enable BOLT project on Aarch64/Linux Windows host cross builder. (#577)" This reverts commit d15886fd1005db29c37515e3826a6c7bd3555837. --- buildbot/osuosl/master/config/builders.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/buildbot/osuosl/master/config/builders.py b/buildbot/osuosl/master/config/builders.py index 696c5b2df..8a173c1be 100644 --- a/buildbot/osuosl/master/config/builders.py +++ b/buildbot/osuosl/master/config/builders.py @@ -269,7 +269,7 @@ }, {'name' : "llvm-clang-win-x-aarch64", - 'tags' : ["clang", "llvm", "lld", "clang-tools-extra", "compiler-rt", "libc++", "libc++abi", "libunwind", "bolt", "cross", "aarch64"], + 'tags' : ["clang", "llvm", "lld", "clang-tools-extra", "compiler-rt", "libc++", "libc++abi", "libunwind", "cross", "aarch64"], 'workernames' : ["as-builder-2"], 'builddir': "x-aarch64", 'factory' : UnifiedTreeBuilder.getCmakeExBuildFactory( @@ -282,7 +282,6 @@ 'libcxx', 'libcxxabi', 'lld', - 'bolt', ], vs = "autodetect", clean = True, @@ -290,7 +289,6 @@ "check-llvm", "check-clang", "check-lld", - "check-bolt", "check-compiler-rt-aarch64-unknown-linux-gnu", "check-unwind-aarch64-unknown-linux-gnu", "check-cxxabi-aarch64-unknown-linux-gnu", @@ -299,8 +297,7 @@ cmake_definitions = { "LLVM_TARGETS_TO_BUILD" : "AArch64", "LLVM_INCLUDE_BENCHMARKS" : "OFF", - # Allow long timeout for BOLT's dump-dot-func.test test. - "LLVM_LIT_ARGS" : "-v -vv --threads=32 --time-tests --timeout=300", + "LLVM_LIT_ARGS" : "-v -vv --threads=32 --time-tests", "TOOLCHAIN_TARGET_TRIPLE" : "aarch64-unknown-linux-gnu", "TOOLCHAIN_TARGET_SYSROOTFS" : util.Interpolate("%(prop:sysroot_path_agx)s"), "REMOTE_TEST_HOST" : util.Interpolate("%(prop:remote_host_agx)s"), @@ -309,7 +306,6 @@ "CMAKE_CXX_FLAGS" : "-D__OPTIMIZE__", "CMAKE_C_COMPILER_LAUNCHER" : "ccache", "CMAKE_CXX_COMPILER_LAUNCHER" : "ccache", - "BOLT_TARGETS_TO_BUILD" : "AArch64", }, cmake_options = [ "-C", util.Interpolate("%(prop:srcdir_relative)s/clang/cmake/caches/CrossWinToARMLinux.cmake"),