From d041fee791b3b9a506665a75bd34c3d7f22c8753 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sat, 28 Feb 2026 22:49:54 +0900 Subject: [PATCH] internal/rosa: export musl This can be useful externally. Signed-off-by: Ophestra --- internal/rosa/all.go | 4 ++-- internal/rosa/musl.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/rosa/all.go b/internal/rosa/all.go index a56652e..22ba015 100644 --- a/internal/rosa/all.go +++ b/internal/rosa/all.go @@ -123,8 +123,8 @@ const ( buildcatrust utilMacros - // musl is a standalone libc that does not depend on the toolchain. - musl + // Musl is a standalone libc that does not depend on the toolchain. + Musl // gcc is a hacked-to-pieces GCC toolchain meant for use in intermediate // stages only. This preset and its direct output must never be exposed. diff --git a/internal/rosa/musl.go b/internal/rosa/musl.go index 4ac5a4e..74603bf 100644 --- a/internal/rosa/musl.go +++ b/internal/rosa/musl.go @@ -47,7 +47,7 @@ rmdir -v /work/lib )...) } func init() { - artifactsF[musl] = func(t Toolchain) pkg.Artifact { + artifactsF[Musl] = func(t Toolchain) pkg.Artifact { return t.newMusl(false, nil) } }