Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 20 additions & 8 deletions buildbot/osuosl/master/config/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -3640,7 +3640,16 @@
'workernames': ["as-builder-9"],
'builddir': "lldb-remote-linux-ubuntu",
'factory': UnifiedTreeBuilder.getCmakeExBuildFactory(
depends_on_projects = ["llvm", "clang", "lld", "lldb"],
depends_on_projects = [
'llvm',
'compiler-rt',
'clang',
'libunwind',
'libcxx',
'libcxxabi',
'lld',
'lldb',
],
enable_runtimes = None,
checks = [
"check-lldb-unit",
Expand Down Expand Up @@ -3678,9 +3687,6 @@
"LLDB_ENABLE_CURSES" : "OFF",
"LLDB_ENABLE_LZMA" : "OFF",
"LLDB_ENABLE_LIBXML2" : "OFF",
# No need to build lldb-server during the first stage.
# We are going to build it for the target platform later.
"LLDB_CAN_USE_LLDB_SERVER" : "OFF",
"LLDB_TEST_USER_ARGS" : util.Interpolate(
"--env;ARCH_CFLAGS=-mcpu=cortex-a78;" \
"--platform-name;remote-linux;" \
Expand Down Expand Up @@ -3769,7 +3775,16 @@
'workernames': ["as-builder-10"],
'builddir': "lldb-x-aarch64",
'factory': UnifiedTreeBuilder.getCmakeExBuildFactory(
depends_on_projects = ["llvm", "clang", "lld", "lldb"],
depends_on_projects = [
'llvm',
'compiler-rt',
'clang',
'libunwind',
'libcxx',
'libcxxabi',
'lld',
'lldb',
],
enable_runtimes = None,
checks = [
"check-lldb-unit",
Expand Down Expand Up @@ -3806,9 +3821,6 @@
"LLDB_ENABLE_CURSES" : "OFF",
"LLDB_ENABLE_LZMA" : "OFF",
"LLDB_ENABLE_LIBXML2" : "OFF",
# No need to build lldb-server during the first stage.
# We are going to build it for the target platform later.
"LLDB_CAN_USE_LLDB_SERVER" : "OFF",
"LLDB_TEST_USER_ARGS" : util.Interpolate(
"--env;ARCH_CFLAGS=-mcpu=cortex-a78;" \
"--platform-name;remote-linux;" \
Expand Down