summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2025-08-06 14:35:52 +0200
committerLinus Färnstrand <linus@mullvad.net>2025-08-06 14:35:52 +0200
commit21efdb20f4c103a7a0b4a8de69fd0eb60fb21d63 (patch)
tree23f7463d42df85d42c2e3383ae6cffc3084addb9
parent1e38aafd0d167827289c7e5cac18eadef5b3c833 (diff)
downloadmullvadvpn-upgrade-container-mold.tar.xz
mullvadvpn-upgrade-container-mold.zip
Use mold linker by default in container (not on build servers)upgrade-container-mold
-rwxr-xr-xbuilding/container-run.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/building/container-run.sh b/building/container-run.sh
index 2defc76170..d1f3910f9c 100755
--- a/building/container-run.sh
+++ b/building/container-run.sh
@@ -19,7 +19,7 @@ CONTAINER_RUNNER=${CONTAINER_RUNNER:-"podman"}
# Temporarily do not use mold for linking by default due to it causing build errors.
# There's a separate issue (DES-1177) to address this problem.
# Build servers also opt out of this and instead use GNU ld.
-USE_MOLD=${USE_MOLD:-"false"}
+USE_MOLD=${USE_MOLD:-"true"}
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
REPO_DIR="$( cd "$SCRIPT_DIR/.." && pwd )"