From ac825640ab2d03d47101f36a81b9edab7204fced Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 14 Apr 2026 00:35:06 +0900 Subject: internal/rosa/llvm: migrate musl This removes the pointless special treatment given to musl. 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 ae5dc611..d147440e 100644 --- a/internal/rosa/stage0.go +++ b/internal/rosa/stage0.go @@ -7,9 +7,9 @@ import ( ) func (t Toolchain) newStage0() (pkg.Artifact, string) { - musl, runtimes, clang := t.NewLLVM() + runtimes, clang := t.NewLLVM() return t.New("rosa-stage0", 0, []pkg.Artifact{ - musl, + t.Load(Musl), t.Load(LLVMCompilerRT), runtimes, clang, -- cgit v1.3.1