From 22ac4ad9496697f5881cb9a990fd0b50849e437e Mon Sep 17 00:00:00 2001 From: fanquake Date: Fri, 3 Jul 2026 14:55:05 +0100 Subject: [PATCH] ci: ensure we use correct lld version in OpenBSD job If we don't suffix with -${APT_LLVM_V}, then lld-21 will be installed. --- ci/test/00_setup_env_openbsd_cross.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test/00_setup_env_openbsd_cross.sh b/ci/test/00_setup_env_openbsd_cross.sh index a3ee96fc112..30d36213695 100755 --- a/ci/test/00_setup_env_openbsd_cross.sh +++ b/ci/test/00_setup_env_openbsd_cross.sh @@ -12,7 +12,7 @@ export APT_LLVM_V="22" export HOST=x86_64-unknown-openbsd export OPENBSD_VERSION=7.9 export OPENBSD_SDK_BASENAME="openbsd-${HOST}-${OPENBSD_VERSION}" -export PACKAGES="clang-${APT_LLVM_V} llvm-${APT_LLVM_V} lld" +export PACKAGES="clang-${APT_LLVM_V} llvm-${APT_LLVM_V} lld-${APT_LLVM_V}" export SYSROOT="--sysroot=${DEPENDS_DIR}/SDKs/${OPENBSD_SDK_BASENAME}" export DEP_OPTS="build_CC=clang build_CXX=clang++ \ CC='clang --target=${HOST} ${SYSROOT}' \