diff options
| author | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2025-06-03 14:32:36 +0000 |
|---|---|---|
| committer | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2025-06-03 14:32:36 +0000 |
| commit | 93a354611e38a6949add5c2e5ccc93ef79b9755f (patch) | |
| tree | 7fee41752b1047d74c59f8ee046cd62735e7e934 /mold | |
| parent | 35912580b66e9439f91ea441938828ad8aa33b0d (diff) | |
| download | alicelinux-93a354611e38a6949add5c2e5ccc93ef79b9755f.tar.gz alicelinux-93a354611e38a6949add5c2e5ccc93ef79b9755f.zip | |
Woodpecker CI 5171f1fdd74e7137c305450dd69a29fa5be4143f [SKIP CI]
Diffstat (limited to 'mold')
| -rw-r--r-- | mold/.checksum | 1 | ||||
| -rw-r--r-- | mold/.files | 15 | ||||
| -rw-r--r-- | mold/abuild | 4 | ||||
| -rw-r--r-- | mold/readme | 13 |
4 files changed, 33 insertions, 0 deletions
diff --git a/mold/.checksum b/mold/.checksum new file mode 100644 index 00000000..8bf7a8df --- /dev/null +++ b/mold/.checksum @@ -0,0 +1 @@ +552592b83b5a1d56e1de1b68cb11be7aaf685691ce1530fc9d61a2cd35033ee9 mold-v2.39.1.tar.gz diff --git a/mold/.files b/mold/.files new file mode 100644 index 00000000..d3588452 --- /dev/null +++ b/mold/.files @@ -0,0 +1,15 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +lrwxrwxrwx root/root usr/bin/ld.mold -> mold +-rwxr-xr-x root/root usr/bin/mold +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/mold/ +-rwxr-xr-x root/root usr/lib/mold/mold-wrapper.so +drwxr-xr-x root/root usr/libexec/ +drwxr-xr-x root/root usr/libexec/mold/ +lrwxrwxrwx root/root usr/libexec/mold/ld -> ../../bin/mold +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +lrwxrwxrwx root/root usr/share/man/man1/ld.mold.1.gz -> mold.1.gz +-rw-r--r-- root/root usr/share/man/man1/mold.1.gz diff --git a/mold/abuild b/mold/abuild new file mode 100644 index 00000000..fcc57c3c --- /dev/null +++ b/mold/abuild @@ -0,0 +1,4 @@ +name=mold +version=2.39.1 +release=1 +source="https://github.com/rui314/${name}/archive/v${version}/${name}-v${version}.tar.gz" diff --git a/mold/readme b/mold/readme new file mode 100644 index 00000000..fa4f7cfb --- /dev/null +++ b/mold/readme @@ -0,0 +1,13 @@ +usage +===== + +for GCC and clang: + '-fuse-ld=mold' + + +for rust: + [target.x86_64-unknown-linux-musl] + linker = "clang" + rustflags = ["-C", "link-arg=-fuse-ld=/path/to/mold"] + +source: https://github.com/rui314/mold |