Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Miri needs a special pre-built standard library which is normally built on-demand when using
cargo miri
and cached locally. This standard library needs to match the exact nightly version of the compiler. The rest of Miri is already installed by./bin/ce_install ...
.This PR builds this sysroot for all architectures. If this is too much (due to storage/build time requirements), this could be restricted to the more common architectures.
Because the sysroot/standard library version must exactly match the compiler version, this build includes the full Rust
nightly
compiler (so there are no conflicts depending on when Miri and Rustnightly
are updated on the runners).Building the sysroot needs the Rust standard library sources, so this PR requires compiler-explorer/infra#1630.
See compiler-explorer/compiler-explorer#2563.