X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Fbootstrap%2Fcheck.rs;h=229851238f1d0817064a6b0bd283b0c93e2f5d5f;hb=1e926f06528ecb2503f026e2fd53cb735d487b10;hp=9937b08561cb0529738b955de8c2a02006198896;hpb=6cfa7ef2ba1a4781605697c78901c9c10353c58f;p=rust.git diff --git a/src/bootstrap/check.rs b/src/bootstrap/check.rs index 9937b08561c..229851238f1 100644 --- a/src/bootstrap/check.rs +++ b/src/bootstrap/check.rs @@ -456,7 +456,9 @@ fn stamp( // behavior, treat it as in-tree so that any new warnings in clippy will be // rejected. tool_check_step!(Clippy, "src/tools/clippy", SourceType::InTree); -tool_check_step!(Miri, "src/tools/miri", SourceType::InTree); +// Miri on the other hand is treated as out of tree, since InTree also causes it to +// be run as part of `check`, which can fail on platforms which libffi-sys has no support for. +tool_check_step!(Miri, "src/tools/miri", SourceType::Submodule); tool_check_step!(Rls, "src/tools/rls", SourceType::InTree); tool_check_step!(Rustfmt, "src/tools/rustfmt", SourceType::InTree);