mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-12-12 03:34:34 +08:00
eb6ce47d4f
mold is a fancy new linker that's really fast. Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/6877 Signed-off-by: Daniel Stone <daniels@collabora.com> Reviewed-by: Eric Engestrom <eric@igalia.com> Reviewed-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17992>
12 lines
186 B
Bash
12 lines
186 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
export MOLD_VERSION="1.4.1"
|
|
git clone -b v"$MOLD_VERSION" --single-branch --depth 1 https://github.com/rui314/mold.git
|
|
cd mold
|
|
make
|
|
make install
|
|
cd ..
|
|
rm -rf mold
|