Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions bootstrap.example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
7 changes: 4 additions & 3 deletions src/ci/docker/host-x86_64/x86_64-gnu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Comment thread
Kobzol marked this conversation as resolved.
--set llvm.libzstd=true \
--set build.sde=/intel-sde/sde64"
ENV SCRIPT="python3 ../x.py --stage 2 test"

Loading