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" 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