aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/rosa.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-04-14 00:19:33 +0900
committerOphestra <cat@gensokyo.uk>2026-04-14 00:19:33 +0900
commita7f7ce17959ccf36201338faeecdbf85d404fe7d (patch)
treecd6c0f1694ee69dd1543738d902e25fff7dfbec2 /internal/rosa/rosa.go
parent38c639e35c4af6310ea15ea125db904a61d30793 (diff)
internal/rosa/llvm: migrate compiler-rt
The newLLVM family of functions predate the package system. This change migrates compiler-rt without changing any resulting artifacts. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/rosa.go')
-rw-r--r--internal/rosa/rosa.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/rosa/rosa.go b/internal/rosa/rosa.go
index c70774d2..89f1c900 100644
--- a/internal/rosa/rosa.go
+++ b/internal/rosa/rosa.go
@@ -329,13 +329,13 @@ mkdir -vp /work/system/bin
}
boot := t - 1
- musl, compilerRT, runtimes, clang := boot.NewLLVM()
+ musl, runtimes, clang := boot.NewLLVM()
toybox := Toybox
if flag&TEarly != 0 {
toybox = toyboxEarly
}
std := []pkg.Artifact{cureEtc{newIANAEtc()}, musl}
- toolchain := []pkg.Artifact{compilerRT, runtimes, clang}
+ toolchain := []pkg.Artifact{boot.Load(LLVMCompilerRT), runtimes, clang}
utils := []pkg.Artifact{
boot.Load(Mksh),
boot.Load(toybox),