-
Notifications
You must be signed in to change notification settings - Fork 13k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
perform sanity checks before initiating cross-compilation in MirOpt
#118050
Conversation
Signed-off-by: onur-ozkan <[email protected]>
(rustbot has picked a reviewer for you, use r? to override) |
does this mean that running MIR opt tests, even just for the host, always fails if the cross compilation toolchain isn't installed? |
Even just for the host, MirOpt test with |
can we fix that? i would very much like to be able to test the host while ignoring the cross compilation, with a big warning |
Sure I can do that. Good idea. @rustbot author |
rust/src/bootstrap/src/core/build_steps/test.rs Lines 1492 to 1495 in 27794f9
Hmm, I need to be sure if blessing will continue working as expected when skipping the cross-target. |
☔ The latest upstream changes (presumably #120060) made this pull request unmergeable. Please resolve the merge conflicts. |
I think this PR is no longer required since #120060 ? Buildling MIR-only sysroots is intended to obviate needing these checks. |
Yes, this is no longer needed. Thank you! |
from #115130
This PR fixes that.