diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-04-15 16:18:02 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-04-15 18:49:36 +0900 |
| commit | 520c36db6debd3e51b4d21395179b72a5b81cda2 (patch) | |
| tree | bb1fcb075b085af8443ad31c4ae5135000919184 /internal/rosa/llvm.go | |
| parent | 3352bb975bca696c8c4d2ed2f129c97514e013a4 (diff) | |
internal/rosa: respect preferred job count
This discontinues use of nproc, and also overrides detection behaviour in ninja.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/llvm.go')
| -rw-r--r-- | internal/rosa/llvm.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/rosa/llvm.go b/internal/rosa/llvm.go index 88ba915c..0d3c993b 100644 --- a/internal/rosa/llvm.go +++ b/internal/rosa/llvm.go @@ -190,7 +190,7 @@ ln -s ld.lld /work/system/bin/ld ln -s clang /work/system/bin/cc ln -s clang++ /work/system/bin/c++ -ninja check-all +ninja ` + jobsFlagE + ` check-all `, }, Python, @@ -230,7 +230,7 @@ func (t Toolchain) newLibclc() (pkg.Artifact, string) { {"LIBCLC_TARGETS_TO_BUILD", "all"}, }, - Script: "ninja test", + Script: "ninja " + jobsFlagE + " test", }), llvmVersion } func init() { |
