Skip to content

Commit f123a9b

Browse files
feat: add clang to dockerfile and change clang++-19 to clang++
1 parent 3a0fef0 commit f123a9b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

ci/docker/x86_64-unknown-linux-gnu/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
66
make \
77
ca-certificates \
88
wget \
9-
xz-utils
9+
xz-utils \
10+
clang \
11+
lld
1012

1113
RUN wget http://ci-mirrors.rust-lang.org/stdarch/sde-external-9.58.0-2025-06-16-lin.tar.xz -O sde.tar.xz
1214
RUN mkdir intel-sde

ci/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ fi
9292
case ${TARGET} in
9393
x86_64-unknown-linux-gnu)
9494
TEST_CPPFLAGS="-fuse-ld=lld -I/usr/include/x86_64-linux-gnu/"
95-
TEST_CXX_COMPILER="clang++-19"
95+
TEST_CXX_COMPILER="clang++"
9696
TEST_RUNNER="${CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER}"
9797
TEST_SKIP_INTRINSICS=crates/intrinsic-test/missing_x86.txt
9898
export STDARCH_DISABLE_ASSERT_INSTR=1

0 commit comments

Comments
 (0)