From a7f7ce17959ccf36201338faeecdbf85d404fe7d Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 14 Apr 2026 00:19:33 +0900 Subject: 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 --- internal/rosa/stage0.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/rosa/stage0.go') 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, -- cgit v1.3.1