aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/stage0.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/stage0.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/stage0.go')
-rw-r--r--internal/rosa/stage0.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/rosa/stage0.go b/internal/rosa/stage0.go
index 0fc0f8f7..ae5dc611 100644
--- a/internal/rosa/stage0.go
+++ b/internal/rosa/stage0.go
@@ -7,10 +7,10 @@ import (
)
func (t Toolchain) newStage0() (pkg.Artifact, string) {
- musl, compilerRT, runtimes, clang := t.NewLLVM()
+ musl, runtimes, clang := t.NewLLVM()
return t.New("rosa-stage0", 0, []pkg.Artifact{
musl,
- compilerRT,
+ t.Load(LLVMCompilerRT),
runtimes,
clang,