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/rosa.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/rosa.go')
| -rw-r--r-- | internal/rosa/rosa.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/rosa/rosa.go b/internal/rosa/rosa.go index 89f1c900..b2ae683b 100644 --- a/internal/rosa/rosa.go +++ b/internal/rosa/rosa.go @@ -329,12 +329,12 @@ mkdir -vp /work/system/bin } boot := t - 1 - musl, runtimes, clang := boot.NewLLVM() + runtimes, clang := boot.NewLLVM() toybox := Toybox if flag&TEarly != 0 { toybox = toyboxEarly } - std := []pkg.Artifact{cureEtc{newIANAEtc()}, musl} + std := []pkg.Artifact{cureEtc{newIANAEtc()}, boot.Load(Musl)} toolchain := []pkg.Artifact{boot.Load(LLVMCompilerRT), runtimes, clang} utils := []pkg.Artifact{ boot.Load(Mksh), |
