diff options
author | Cem Keylan <cem@ckyln.com> | 2023-02-03 17:01:35 +0100 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2023-02-03 17:01:35 +0100 |
commit | 47997ed3d660a2e73664bd001c14c509790da30a (patch) | |
tree | 7cff9d4f0f376fbae3bebe7bd9380ed0fa026f1f /extra/mold | |
parent | 808a7e8170b3c8e998187ae0d422be63ac4d7e84 (diff) | |
download | repository-47997ed3d660a2e73664bd001c14c509790da30a.tar.gz |
mold: add new package at 1.10.1
Diffstat (limited to 'extra/mold')
-rwxr-xr-x | extra/mold/build | 24 | ||||
-rw-r--r-- | extra/mold/checksums | 3 | ||||
-rw-r--r-- | extra/mold/depends | 3 | ||||
-rw-r--r-- | extra/mold/meta | 3 | ||||
-rw-r--r-- | extra/mold/sources | 2 | ||||
-rw-r--r-- | extra/mold/version | 1 |
6 files changed, 36 insertions, 0 deletions
diff --git a/extra/mold/build b/extra/mold/build new file mode 100755 index 00000000..477dc98c --- /dev/null +++ b/extra/mold/build @@ -0,0 +1,24 @@ +#!/bin/sh -e + +# Create static library of xxhash to link locally. +make -C xxhash + +export CXXFLAGS="$CXXFLAGS -I$PWD/xxhash -L$PWD/xxhash -static-libgcc -static-libstdc++" + +export DESTDIR="$1" + +cmake -B build \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DMI_BUILD_SHARED=OFF \ + -DMOLD_MOSTLY_STATIC=ON + +cmake --build build +cmake --install build + +ln -s mold "$1/usr/bin/ld" + +# Create symbolic link for GCC to use mold. +mkdir -p "$1/usr/lib/mold" +ln -s ../../bin/mold "$1/usr/lib/mold/ld" diff --git a/extra/mold/checksums b/extra/mold/checksums new file mode 100644 index 00000000..71790334 --- /dev/null +++ b/extra/mold/checksums @@ -0,0 +1,3 @@ +%BLAKE3 +8ea28f268341381e2869e9b0d90315ca420ec9710fed92c009ef8085c3ae782c v1.10.1.tar.gz +65ffa3883d271c3949c4d7b69d3140196c02d4b3a0338ea163fb5bdd60a6161e v0.8.1.tar.gz diff --git a/extra/mold/depends b/extra/mold/depends new file mode 100644 index 00000000..ba0aaf32 --- /dev/null +++ b/extra/mold/depends @@ -0,0 +1,3 @@ +cmake make +libressl make +zlib make diff --git a/extra/mold/meta b/extra/mold/meta new file mode 100644 index 00000000..1df1bcc0 --- /dev/null +++ b/extra/mold/meta @@ -0,0 +1,3 @@ +description: A modern linker +license: AGPL-3.0-or-later +maintainer: Cem Keylan <cem@carbslinux.org> diff --git a/extra/mold/sources b/extra/mold/sources new file mode 100644 index 00000000..13d4e280 --- /dev/null +++ b/extra/mold/sources @@ -0,0 +1,2 @@ +https://github.com/rui314/mold/archive/refs/tags/v1.10.1.tar.gz +https://github.com/Cyan4973/xxHash/archive/refs/tags/v0.8.1.tar.gz xxhash diff --git a/extra/mold/version b/extra/mold/version new file mode 100644 index 00000000..2c5565d6 --- /dev/null +++ b/extra/mold/version @@ -0,0 +1 @@ +1.10.1 1 |