From 85adfcfe22b6f844354cd68d57ba3169fd3d8ee0 Mon Sep 17 00:00:00 2001 From: xonx <119700621+xonx4l@users.noreply.github.com> Date: Sun, 26 Jul 2026 18:07:29 +0000 Subject: [PATCH 1/2] run intrinsic-test by default on x86_64-gnu --- src/ci/docker/host-x86_64/x86_64-gnu/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/ci/docker/host-x86_64/x86_64-gnu/Dockerfile b/src/ci/docker/host-x86_64/x86_64-gnu/Dockerfile index 207dbed681faa..1d411bc2fab55 100644 --- a/src/ci/docker/host-x86_64/x86_64-gnu/Dockerfile +++ b/src/ci/docker/host-x86_64/x86_64-gnu/Dockerfile @@ -34,6 +34,7 @@ ENV RUST_CONFIGURE_ARGS="--build=x86_64-unknown-linux-gnu \ --enable-sanitizers \ --enable-profiler \ --enable-compiler-docs \ - --set llvm.libzstd=true" -ENV SCRIPT="python3 ../x.py --stage 2 test && \ - python3 ../x.py --stage 2 test library/stdarch/crates/intrinsic-test" \ No newline at end of file + --set llvm.libzstd=true \ + --set build.sde=/intel-sde/sde64" +ENV SCRIPT="python3 ../x.py --stage 2 test" + \ No newline at end of file From 23e9a0908b4b6d2cf1bdcc612db082bf9edc6d0b Mon Sep 17 00:00:00 2001 From: xonx <119700621+xonx4l@users.noreply.github.com> Date: Tue, 28 Jul 2026 10:02:10 +0000 Subject: [PATCH 2/2] add build.sde to bootstrap.example.toml --- bootstrap.example.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bootstrap.example.toml b/bootstrap.example.toml index 8229538ca3ce0..a8bab85fda087 100644 --- a/bootstrap.example.toml +++ b/bootstrap.example.toml @@ -351,6 +351,10 @@ # Set this to "discover" to automatically discover LLDB from the environment. #build.lldb = "lldb" +# The path to (or name of) the Intel SDE executable, used to run the +# intrinsic-test suite for x86 target features the host CPU may not support. +#build.sde = "sde64" + # The node.js executable to use. Note that this is only used for the emscripten # target when running tests, otherwise this can be omitted. #build.nodejs = "node"