internal/rosa: lazy initialise all artifacts
All checks were successful
Test / Create distribution (push) Successful in 48s
Test / Sandbox (push) Successful in 2m37s
Test / Hakurei (push) Successful in 4m5s
Test / ShareFS (push) Successful in 4m2s
Test / Hpkg (push) Successful in 4m33s
Test / Sandbox (race detector) (push) Successful in 4m59s
Test / Hakurei (race detector) (push) Successful in 5m57s
Test / Flake checks (push) Successful in 1m44s

This improves performance, though not as drastically as lazy initialising llvm.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-01-25 01:32:21 +09:00
parent 43b8a40fc0
commit 20790af71e
17 changed files with 174 additions and 94 deletions

View File

@@ -188,7 +188,7 @@ cp -r /system/include /usr/include && rm -rf /system/include
if len(patches) > 1 {
source = t.New(
"llvmorg-patched", stage3Concat(t, []pkg.Artifact{},
t.NewPatch(),
t.Load(Patch),
), nil, nil, `
cp -r /usr/src/llvmorg/. /work/.
chmod -R +w /work && cd /work
@@ -201,14 +201,14 @@ cat /usr/src/llvm-patches/* | patch -p 1
Cache: slices.Concat(cache, attr.cmake),
Append: cmakeAppend,
Extra: stage3Concat(t, attr.extra,
t.NewLibffi(),
t.NewPython(),
t.NewPerl(),
t.NewDiffutils(),
t.NewBash(),
t.NewCoreutils(),
t.Load(Libffi),
t.Load(Python),
t.Load(Perl),
t.Load(Diffutils),
t.Load(Bash),
t.Load(Coreutils),
t.NewKernelHeaders(),
t.Load(KernelHeaders),
),
Prefix: attr.prefix,
@@ -327,7 +327,7 @@ ln -s \
musl,
compilerRT,
runtimes,
t.NewGit(),
t.Load(Git),
},
script: `
ln -s clang /work/system/bin/cc