1
0
forked from rosa/hakurei

internal/rosa/llvm: migrate musl

This removes the pointless special treatment given to musl.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-04-14 00:35:06 +09:00
parent a7f7ce1795
commit ac825640ab
5 changed files with 32 additions and 33 deletions

View File

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