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.
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
Prevent building cargo from invalidating build cache of other tools due to conditionally applied
-Zon-broken-pipe=kill
via trackedRUSTFLAGS
#131155Prevent building cargo from invalidating build cache of other tools due to conditionally applied
-Zon-broken-pipe=kill
via trackedRUSTFLAGS
#131155Changes from all commits
03abf67
5c01316
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could try changing the windows hack to a
early_fatal
error:rust/compiler/rustc_driver_impl/src/lib.rs
Line 1412 in cf24c73
1
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll do that in a follow-up, I would like to stop run-make cargo rebuilds lol.
EDIT: actually I don't want to make the hack even hackier, this should be addressed by fixing the underlying cause and not add paper to the paper.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fair!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: this is technically not robust because I exploited the fact that
--print=sysroot
and friends usually use the rawprintln!
which will panic upon encountering a broken pipe when rustc is not built with-Zon-broken-pipe=kill
. Some outputs inrustc_driver_impl
are correctly guarded by usingsafe_println!
where they won't panic upon encountering a broken pipe even if-Zon-broken-pipe=kill
is unset.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
but if
-Zon-broken-pipe=kill
is unset,safe_println
will still emit an IO error, right? which is wrongThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah idk how specifically that will be handled, but that is left as an exercise for the future reader. Actually I think to clarify, I believe the
safe_println
inrustc_driver_impl
is to convert the panic if-Zon-broken-pipe=kill
is unset -> fatal error, just that it avoids an ICE, not necessarily the behavior one would want...