mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
Add option to pass a custom codegen backend from a driver
This commit is contained in:
parent
141b9c2890
commit
210e89198d
1 changed files with 2 additions and 2 deletions
|
@ -357,7 +357,7 @@ pub fn main() {
|
|||
args.extend(vec!["--sysroot".into(), sys_root]);
|
||||
};
|
||||
|
||||
return rustc_driver::run_compiler(&args, &mut DefaultCallbacks, None, None);
|
||||
return rustc_driver::run_compiler(&args, &mut DefaultCallbacks, None, None, None);
|
||||
}
|
||||
|
||||
if orig_args.iter().any(|a| a == "--version" || a == "-V") {
|
||||
|
@ -420,6 +420,6 @@ pub fn main() {
|
|||
let mut default = DefaultCallbacks;
|
||||
let callbacks: &mut (dyn rustc_driver::Callbacks + Send) =
|
||||
if clippy_enabled { &mut clippy } else { &mut default };
|
||||
rustc_driver::run_compiler(&args, callbacks, None, None)
|
||||
rustc_driver::run_compiler(&args, callbacks, None, None, None)
|
||||
}))
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue