From e97f6a393f90c9a194dc9d19abf23b62fa17c987 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 14 Apr 2026 02:06:08 +0900 Subject: internal/rosa/llvm: migrate runtimes and clang This eliminates most newLLVM family of functions. Signed-off-by: Ophestra --- internal/rosa/stage0.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'internal/rosa/stage0.go') diff --git a/internal/rosa/stage0.go b/internal/rosa/stage0.go index d147440e..f4a2edc5 100644 --- a/internal/rosa/stage0.go +++ b/internal/rosa/stage0.go @@ -7,12 +7,11 @@ import ( ) func (t Toolchain) newStage0() (pkg.Artifact, string) { - runtimes, clang := t.NewLLVM() return t.New("rosa-stage0", 0, []pkg.Artifact{ t.Load(Musl), t.Load(LLVMCompilerRT), - runtimes, - clang, + t.Load(LLVMRuntimes), + t.Load(LLVMClang), t.Load(Zlib), t.Load(Bzip2), -- cgit v1.3.1