-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
Get rid of RunCompiler #135880
Get rid of RunCompiler #135880
Conversation
Some changes occurred in src/tools/clippy cc @rust-lang/clippy The rustc-dev-guide subtree was changed. If this PR only touches the dev guide consider submitting a PR directly to rust-lang/rustc-dev-guide otherwise thank you for updating the dev guide with your changes. cc @BoxyUwU, @jieyouxu, @Kobzol The Miri subtree was changed cc @rust-lang/miri |
This comment has been minimized.
This comment has been minimized.
ee7c1f4
to
571d10b
Compare
0195352
to
9ac6cb3
Compare
r=me with CI happy |
This comment has been minimized.
This comment has been minimized.
9ac6cb3
to
703c745
Compare
They can both be set inside the config callback too.
It has become nothing other than a wrapper around run_compiler.
703c745
to
241f824
Compare
@bors r=oli-obk |
…iaskrgr Rollup of 7 pull requests Successful merges: - rust-lang#135073 (Implement `ByteStr` and `ByteString` types) - rust-lang#135492 (Add missing check for async body when suggesting await on futures.) - rust-lang#135766 (handle global trait bounds defining assoc types) - rust-lang#135880 (Get rid of RunCompiler) - rust-lang#135908 (rustc_codegen_llvm: remove outdated asm-to-obj codegen note) - rust-lang#135911 (Allow `arena_cache` queries to return `Option<&'tcx T>`) - rust-lang#135920 (simplify parse_format::Parser::ws by using next_if) r? `@ghost` `@rustbot` modify labels: rollup
@bjorn3 Please fix
|
Already did so in this very PR: https://github.com/rust-lang/rust/pull/135880/files#diff-e412c0c41d4b151a96b0662e580fc5eea17f297fae5dee26793a27d55bc87200R9 It probably hasn't yet been synced to the rustc-dev-guide repo. |
Oh, thanks! The current situation with the documentation is confusing :P Apparently the changes can happen in both repos ( |
Indeed. We don't currently run the linkchecker in Rust's CI, which is something that should be fixed though (I have it in my TODO list, unless someone gets to it first). |
The various
set_*
methods that have been removed can be replaced by setting the respective fields in theCallbacks::config
implementation.set_using_internal_features
was often forgotten and it's equivalent is now done automatically.