-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Make --emit dep-info work correctly with -Z no-analysis again. #33450
Conversation
r? @nrc (rust_highfive has picked a reviewer for you, use r? to override) |
{ | ||
let _ignore = hir_map.dep_graph.in_ignore(); | ||
controller_entry_point!(after_write_deps, | ||
controller_entry_point!(after_ast, |
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 think after_hir_lowering
might be a better name here - ast
is a data structure rather than a phase.
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.
Done.
lgtm, r+ with the name changed |
@bors: r+ |
📌 Commit 5ec8e92 has been approved by |
⌛ Testing commit 5ec8e92 with merge 82f2240... |
💔 Test failed - auto-win-gnu-32-opt-rustbuild |
Whoops, looks like my regex failed on Windows. Could you approve again? |
☔ The latest upstream changes (presumably #33443) made this pull request unmergeable. Please resolve the merge conflicts. |
Previously, it would attempt to resolve some external crates that weren't necessary for dep-info output. Fixes rust-lang#33231.
8687aa8
to
ba04a52
Compare
Re-based onto master. |
@bors: r+ |
📌 Commit ba04a52 has been approved by |
|
⌛ Testing commit ba04a52 with merge 487dffe... |
@bors r- |
⛄ The build was interrupted to prioritize another pull request. |
::sigh:: this wouldn't be a problem if rustc didn't put the absolute path inside the deps file, which requires me to sed it away... |
I fixed the sed invocation to work with BSD utils, so should be ok to try this again. |
@bors r=nrc |
📌 Commit 215b260 has been approved by |
Make --emit dep-info work correctly with -Z no-analysis again. Previously, it would attempt to resolve some external crates that weren't necessary for dep-info output. Fixes rust-lang#33231.
Make --emit dep-info work correctly with -Z no-analysis again. Previously, it would attempt to resolve some external crates that weren't necessary for dep-info output. Fixes #33231.
Previously, it would attempt to resolve some external crates that weren't necessary for dep-info output.
Fixes #33231.