internal/rosa/gnu: coreutils artifact
All checks were successful
Test / Create distribution (push) Successful in 1m48s
Test / ShareFS (push) Successful in 6m35s
Test / Hakurei (push) Successful in 6m39s
Test / Sandbox (race detector) (push) Successful in 6m59s
Test / Hpkg (push) Successful in 7m5s
Test / Hakurei (race detector) (push) Successful in 7m41s
Test / Sandbox (push) Successful in 2m27s
Test / Flake checks (push) Successful in 2m38s

Required by llvm unit and regression tests.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-01-22 05:42:23 +09:00
parent 20a8d30821
commit 50b82dcf82
2 changed files with 32 additions and 3 deletions

View File

@@ -149,9 +149,6 @@ func (t Toolchain) NewBash() pkg.Artifact {
return t.New("bash-"+version, []pkg.Artifact{
t.NewMake(),
}, nil, nil, `
cd /usr/src/bash
test_disable() { chmod +w "$2" && echo "$1" > "$2"; }
cd "$(mktemp -d)"
/usr/src/bash/configure \
--prefix=/system \
@@ -166,3 +163,34 @@ make DESTDIR=/work install
pkg.TarGzip,
)))
}
// NewCoreutils returns a [pkg.Artifact] containing an installation of GNU Coreutils.
func (t Toolchain) NewCoreutils() pkg.Artifact {
const (
version = "9.9"
checksum = "B1_TaXj1j5aiVIcazLWu8Ix03wDV54uo2_iBry4qHG6Y-9bjDpUPlkNLmU_3Nvw6"
)
return t.New("coreutils-"+version, []pkg.Artifact{
t.NewMake(),
t.NewPerl(),
t.NewKernelHeaders(),
}, nil, nil, `
cd /usr/src/coreutils
test_disable() { chmod +w "$2" && echo "$1" > "$2"; }
test_disable '#!/bin/sh' gnulib-tests/test-c32ispunct.sh
cd "$(mktemp -d)"
/usr/src/coreutils/configure \
--prefix=/system \
--build="${ROSA_TRIPLE}"
make "-j$(nproc)" check
make DESTDIR=/work install
`, pkg.Path(AbsUsrSrc.Append("coreutils"), true, pkg.NewHTTPGetTar(
nil,
"https://ftp.gnu.org/gnu/coreutils/coreutils-"+version+".tar.gz",
mustDecode(checksum),
pkg.TarGzip,
)))
}

View File

@@ -130,6 +130,7 @@ func (t Toolchain) newLLVM(variant string, attr *llvmAttr) pkg.Artifact {
t.NewPerl(),
t.NewDiffutils(),
t.NewBash(),
t.NewCoreutils(),
t.NewKernelHeaders(),
}