
Fixes LTO issue. Release notes: https://github.com/rui314/mold/releases/tag/v1.11.0 Acked-by: Eric Engestrom <eric@igalia.com> Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22642>
16 lines
288 B
Bash
16 lines
288 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
MOLD_VERSION="1.11.0"
|
|
|
|
git clone -b v"$MOLD_VERSION" --single-branch --depth 1 https://github.com/rui314/mold.git
|
|
pushd mold
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release -D BUILD_TESTING=OFF -D MOLD_LTO=ON
|
|
cmake --build . --parallel
|
|
cmake --install .
|
|
|
|
popd
|
|
rm -rf mold
|