aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/musl.go
blob: 2e9709cd648657632aeb0f57daaab6b1f04766a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package rosa

import "hakurei.app/internal/pkg"

func (t Toolchain) newMusl(
	headers bool,
	extra ...pkg.Artifact,
) (pkg.Artifact, string) {
	const (
		version  = "1.2.6"
		checksum = "WtWb_OV_XxLDAB5NerOL9loLlHVadV00MmGk65PPBU1evaolagoMHfvpZp_vxEzS"
	)

	name := "musl"
	helper := MakeHelper{
		OmitDefaults: true,
		SkipCheck:    true,
		Script: `
mkdir -p /work/system/bin
COMPAT_LINKER_NAME="ld-musl-` + linuxArch() + `.so.1"
ln -vs ../lib/libc.so /work/system/bin/linker
ln -vs ../lib/libc.so /work/system/bin/ldd
ln -vs libc.so "/work/system/lib/${COMPAT_LINKER_NAME}"
rm -v "/work/lib/${COMPAT_LINKER_NAME}"
rmdir -v /work/lib
`,
	}

	if headers {
		name += "-headers"
		helper.Make = []string{
			"DESTDIR=/work",
			"install-headers",
		}
		helper.Install = "# headers installed during make"
		helper.Script = ""
	}

	return t.NewPackage(name, version, newTar(
		"https://musl.libc.org/releases/musl-"+version+".tar.gz",
		checksum,
		pkg.TarGzip,
	), &PackageAttr{
		NonStage0: extra,

		// expected to be writable in copies
		Chmod: true,

		Env: stage0ExclConcat(t, []string{
			"CC=clang",
			"LIBCC=/system/lib/clang/" + llvmVersionMajor + "/lib/" +
				triplet() + "/libclang_rt.builtins.a",
			"AR=ar",
			"RANLIB=ranlib",
		},
			"LDFLAGS="+earlyLDFLAGS(false),
		),
	}, &helper,
		Coreutils,
	), version
}
func init() {
	artifactsM[Musl] = Metadata{
		f: func(t Toolchain) (pkg.Artifact, string) {
			return t.newMusl(false, t.Load(CompilerRT))
		},

		Name:        "musl",
		Description: "an implementation of the C standard library",
		Website:     "https://musl.libc.org/",

		ID: 11688,
	}
}