Skip to content

Commit 9b44a4c

Browse files
authored
Enable OpenMP and Add new WoA 2stage worker (#488)
This patch introduces the following changes: 1. A new AArch64 Windows worker linaro-armv8-windows-msvc-03 for clang-arm64-windows-msvc-2stage builder. 3. The OpenMP is enabled for the clang-arm64-windows-msvc-2stage builder via -DLLVM_ENABLE_RUNTIMES=openmp CMake flag.
1 parent 54d4431 commit 9b44a4c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

buildbot/osuosl/master/config/builders.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@
653653

654654
{'name' : "clang-arm64-windows-msvc-2stage",
655655
'tags' : ["clang"],
656-
'workernames' : ["linaro-armv8-windows-msvc-02"],
656+
'workernames' : ["linaro-armv8-windows-msvc-02", "linaro-armv8-windows-msvc-03"],
657657
'builddir': "clang-arm64-windows-msvc-2stage",
658658
'factory' : ClangBuilder.getClangCMakeBuildFactory(
659659
vs="manual",
@@ -665,6 +665,7 @@
665665
"-DCLANG_DEFAULT_LINKER=lld",
666666
"-DCMAKE_TRY_COMPILE_CONFIGURATION=Release",
667667
"-DLLVM_CCACHE_BUILD=ON",
668+
"-DLLVM_ENABLE_RUNTIMES=openmp",
668669
"-DCOMPILER_RT_BUILD_SANITIZERS=OFF"])},
669670

670671
{'name' : 'clang-x64-windows-msvc',

buildbot/osuosl/master/config/workers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,10 @@ def get_all():
4747
create_worker("linaro-g4-01", max_builds=1),
4848
create_worker("linaro-g4-02", max_builds=1),
4949

50-
# AArch64 Windows Microsoft Surface X Pro
50+
# Windows Dev Kit 2023, Snapdragon® 8cx Gen 3
5151
create_worker("linaro-armv8-windows-msvc-01", max_builds=1),
5252
create_worker("linaro-armv8-windows-msvc-02", max_builds=1),
53+
create_worker("linaro-armv8-windows-msvc-03", max_builds=1),
5354
create_worker("linaro-armv8-windows-msvc-04", max_builds=1),
5455
create_worker("linaro-armv8-windows-msvc-05", max_builds=1),
5556

0 commit comments

Comments
 (0)