diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-04-14 00:35:06 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-04-14 00:35:42 +0900 |
| commit | ac825640ab2d03d47101f36a81b9edab7204fced (patch) | |
| tree | eed62bc56c4dc05954a20a84116b426bf1c72a94 /internal/rosa/stage0.go | |
| parent | a7f7ce17959ccf36201338faeecdbf85d404fe7d (diff) | |
internal/rosa/llvm: migrate musl
This removes the pointless special treatment given to musl.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/stage0.go')
| -rw-r--r-- | internal/rosa/stage0.go | 4 |
1 files changed, 2 insertions, 2 deletions
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, |
