Skip to content

Commit 44636a4

Browse files
authored
[libc][AMDGPU] Add libc to the runtimes list (#419)
It appears that if something is contained in the `depends_on_project` list but is not explicitly mentioned as an `enable_runtimes`, while also an explicit `enable_runtimes` list is passed to the unified tree builder, that component is auto-added as an `LLVM_ENABLE_PROJECTS`. This is wrong in the case of libc. Wile we only care about the version being built for AMDGPU, this appears to be the easiest fix to unblock our libc bot.
1 parent 2e648b0 commit 44636a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildbot/osuosl/master/config/builders.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1953,7 +1953,7 @@
19531953
'builddir': "openmp-offload-amdgpu-runtime-2",
19541954
'factory' : OpenMPBuilder.getOpenMPCMakeBuildFactory(
19551955
clean=True,
1956-
enable_runtimes=['compiler-rt', 'libunwind', 'libcxx', 'libcxxabi', 'openmp', 'offload'],
1956+
enable_runtimes=['compiler-rt', 'libunwind', 'libc', 'libcxx', 'libcxxabi', 'openmp', 'offload'],
19571957
depends_on_projects=['llvm','clang','lld', 'offload', 'openmp', 'compiler-rt', 'libunwind', 'libcxx', 'libcxxabi', 'libc'],
19581958
extraCmakeArgs=[
19591959
"-DCMAKE_BUILD_TYPE=Release",

0 commit comments

Comments
 (0)