Skip to content

Commit c6619b2

Browse files
feat: add clang to dockerfile and change clang++-19 to clang++
1 parent 11263b7 commit c6619b2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

library/stdarch/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

library/stdarch/ci/run.sh

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

0 commit comments

Comments
 (0)