From 128e578c04cd775211cb4f1f2134e322086ab0ee Mon Sep 17 00:00:00 2001 From: David Heidelberg Date: Sun, 23 Apr 2023 11:21:16 +0200 Subject: [PATCH] ci/mold: bump to 1.11.0 Fixes LTO issue. Release notes: https://github.com/rui314/mold/releases/tag/v1.11.0 Acked-by: Eric Engestrom Signed-off-by: David Heidelberg Part-of: --- .gitlab-ci/container/build-mold.sh | 4 +++- .gitlab-ci/image-tags.yml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci/container/build-mold.sh b/.gitlab-ci/container/build-mold.sh index 696568c..e3be6bd 100644 --- a/.gitlab-ci/container/build-mold.sh +++ b/.gitlab-ci/container/build-mold.sh @@ -2,12 +2,14 @@ set -ex -MOLD_VERSION="1.10.0" +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 diff --git a/.gitlab-ci/image-tags.yml b/.gitlab-ci/image-tags.yml index 186487d4..d74053e 100644 --- a/.gitlab-ci/image-tags.yml +++ b/.gitlab-ci/image-tags.yml @@ -3,7 +3,7 @@ variables: DEBIAN_BASE_TAG: "2023-04-16-kernel-6.3" DEBIAN_X86_BUILD_IMAGE_PATH: "debian/x86_build" - DEBIAN_BUILD_TAG: "2023-04-14-pyfire" + DEBIAN_BUILD_TAG: "2023-04-29-mold" DEBIAN_X86_BUILD_MINGW_IMAGE_PATH: "debian/x86_build-mingw" DEBIAN_BUILD_MINGW_TAG: "2023-01-03-ci-libva-2.17" -- 2.7.4