1
0
forked from rosa/hakurei

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>
This commit is contained in:
2026-04-14 00:19:33 +09:00
parent 38c639e35c
commit a7f7ce1795
4 changed files with 54 additions and 51 deletions

View File

@@ -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,