llvm18: Native tablegen build fails with too many jobs, limit to 16

This commit is contained in:
Jeremy Soller 2025-11-20 15:05:36 -07:00
parent 93803d4539
commit 162f551312
No known key found for this signature in database
GPG Key ID: 670FDFB5428E05CA

View File

@ -66,5 +66,7 @@ COOKBOOK_CMAKE_FLAGS+=(
-DLLVM_ENABLE_PROJECTS="llvm"
)
# Native tablegen build fails with too many jobs, limit to 16
COOKBOOK_MAKE_JOBS="$(( ${COOKBOOK_MAKE_JOBS} > 16 ? 16 : ${COOKBOOK_MAKE_JOBS} ))"
cookbook_cmake "${COOKBOOK_SOURCE}/llvm"
"""