Skip to content

Commit

Permalink
Switch 'lldb-remote-linux-ubuntu' builder to use released clang-19. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
vvereschaka authored Oct 10, 2024
1 parent 0e0e4fb commit 7d4f120
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions buildbot/osuosl/master/config/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -3314,8 +3314,8 @@
"CMAKE_BUILD_TYPE" : "Release",
"CMAKE_C_COMPILER_LAUNCHER" : "ccache",
"CMAKE_CXX_COMPILER_LAUNCHER" : "ccache",
"CMAKE_C_COMPILER" : "clang-18",
"CMAKE_CXX_COMPILER" : "clang++-18",
"CMAKE_C_COMPILER" : "clang-19",
"CMAKE_CXX_COMPILER" : "clang++-19",
"CMAKE_CXX_FLAGS" : "-D__OPTIMIZE__",
"LLVM_TARGETS_TO_BUILD" : "AArch64",
"LLVM_DEFAULT_TARGET_TRIPLE" : "aarch64-unknown-linux-gnu",
Expand All @@ -3327,7 +3327,7 @@
"LLVM_LIT_ARGS" : "-v -vv --threads=8",

"LLDB_TEST_ARCH" : "aarch64",
"LLDB_TEST_COMPILER" : util.Interpolate("%(prop:tools_root_path)s/aarch64-clang-18/bin/clang"),
"LLDB_TEST_COMPILER" : util.Interpolate("%(prop:tools_root_path)s/aarch64-clang-19/bin/clang"),
"LLDB_TEST_PLATFORM_URL" : util.Interpolate("connect://%(prop:remote_test_host)s:1234"),
"LLDB_TEST_PLATFORM_WORKING_DIR": "/home/ubuntu/lldb-tests",
"LLDB_TEST_SYSROOT" : util.Interpolate("%(prop:sysroot_path_aarch64)s"),
Expand Down Expand Up @@ -3366,9 +3366,9 @@
"CMAKE_C_FLAGS" : "-mcpu=cortex-a78 -D__OPTIMIZE__ -fPIC",
"CMAKE_EXE_LINKER_FLAGS" : "-Wl,-l:libc++abi.a -Wl,-l:libc++.a -Wl,-l:libunwind.a",
"CMAKE_SHARED_LINKER_FLAGS" : "-Wl,-l:libc++abi.a -Wl,-l:libc++.a -Wl,-l:libunwind.a",
"CMAKE_CXX_COMPILER" : util.Interpolate("%(prop:tools_root_path)s/aarch64-clang-18/bin/clang++"),
"CMAKE_C_COMPILER" : util.Interpolate("%(prop:tools_root_path)s/aarch64-clang-18/bin/clang"),
"CMAKE_ASM_COMPILER" : util.Interpolate("%(prop:tools_root_path)s/aarch64-clang-18/bin/clang"),
"CMAKE_CXX_COMPILER" : util.Interpolate("%(prop:tools_root_path)s/aarch64-clang-19/bin/clang++"),
"CMAKE_C_COMPILER" : util.Interpolate("%(prop:tools_root_path)s/aarch64-clang-19/bin/clang"),
"CMAKE_ASM_COMPILER" : util.Interpolate("%(prop:tools_root_path)s/aarch64-clang-19/bin/clang"),
"CMAKE_SYSTEM_NAME" : "Linux",
"CMAKE_SYSTEM_PROCESSOR" : "aarch64",
"CMAKE_CROSSCOMPILING" : "ON",
Expand Down

0 comments on commit 7d4f120

Please sign in to comment.