-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Dist analysis step panics when trying to copy save-analysis #61703
Comments
Seems reasonable, I think - happy to review a PR or if you could give a specific set of reproduction instructions (ideally ones that would work on linux). |
Merged
tmandry
added a commit
to tmandry/rust
that referenced
this issue
Jun 11, 2019
Make sure we look for save analysis in the right place. Fixes rust-lang#61703.
Centril
added a commit
to Centril/rust
that referenced
this issue
Jun 12, 2019
Fix x.py install Make sure we look for save analysis in the right place. Fixes rust-lang#61703. r? @Mark-Simulacrum cc @petrhosek @cramertj
Centril
added a commit
to Centril/rust
that referenced
this issue
Jun 12, 2019
Fix x.py install Make sure we look for save analysis in the right place. Fixes rust-lang#61703. r? @Mark-Simulacrum cc @petrhosek @cramertj
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We're seeing the following error on our builders that are building Rust toolchain for Fuchsia:
The
save-analysis
directory is entirely missing for the host target. I've been debugging this and I believe the problem is that for host target, we don't buildstd
instage2
, we always uplift it fromstage1
, and therefore we never generatesave-analysis
instage2
. We should probably upliftsave-analysis
fromstage1
as well.The text was updated successfully, but these errors were encountered: