diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-04-14 02:06:08 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-04-14 02:07:13 +0900 |
| commit | e97f6a393f90c9a194dc9d19abf23b62fa17c987 (patch) | |
| tree | 74d899ebca362caad5f8c573d188a5cb98e17fdf /internal/rosa/stage0.go | |
| parent | eeffefd22b45b458af89f19e371fcac2179e1900 (diff) | |
internal/rosa/llvm: migrate runtimes and clang
This eliminates most newLLVM family of functions.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/stage0.go')
| -rw-r--r-- | internal/rosa/stage0.go | 5 |
1 files changed, 2 insertions, 3 deletions
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), |
