docker: Add appropriate libclc-dev for the specific LLVM epoch. (ubuntu/clang)

This commit is contained in:
Jason Volk 2023-04-06 21:48:59 -07:00
parent 13d21ca83c
commit 24cb1b804f
1 changed files with 1 additions and 0 deletions

View File

@ -149,6 +149,7 @@ args_toolchain()
extra_dev="clang-${_epoch}"
extra_dev="${extra_dev} llvm-${_epoch}"
extra_dev="${extra_dev} llvm-spirv-${_epoch}"
extra_dev="${extra_dev} libclc-${_epoch}-dev"
args="$args --build-arg extra_packages_dev=\"${extra_dev}\""
args="$args --build-arg cc=clang-${_epoch} --build-arg cxx=clang++-${_epoch}"
return 0