Skip to content

Commit 5b4634b

Browse files
authored
[AMDGPU][Libc] Fix argument passing to script (#590)
Having the argument as part of the script name is an error as it tries to find / exec that exact string. Pass theargument as extra_args instead. Not sure if we need to split argument name and value in separate array entries.
1 parent 2a4e327 commit 5b4634b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

buildbot/osuosl/master/config/builders.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2081,7 +2081,8 @@
20812081
'builddir': "openmp-offload-libc-amdgpu-runtime",
20822082
'factory' : AnnotatedBuilder.getAnnotatedBuildFactory(
20832083
depends_on_projects=['llvm', 'clang', 'compiler-rt', 'lld', 'libc', 'offload', 'openmp', 'libunwind'],
2084-
script='amdgpu-offload-cmake.py --cmake-file=AMDGPULibcBot.cmake',
2084+
script='amdgpu-offload-cmake.py',
2085+
extra_args=['--cmake-file=AMDGPULibcBot.cmake'],
20852086
checkout_llvm_sources=True,
20862087
script_interpreter=None
20872088
)},

0 commit comments

Comments
 (0)