diff options
| author | bors <bors@rust-lang.org> | 2020-09-29 03:27:59 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2020-09-29 03:27:59 +0000 |
| commit | ce678b9ac1aac0cb32a36f88294cabf88de316fc (patch) | |
| tree | 3d758b9a65dae3c591c70952214f3a7b8337facf | |
| parent | db6fb90bc0d9cbf4ddf1bfa560b9e8db10851a84 (diff) | |
| parent | 1b58144af56d8e42adadb1d02dab75da00f5b2ea (diff) | |
| download | rust-ce678b9ac1aac0cb32a36f88294cabf88de316fc.tar.gz rust-ce678b9ac1aac0cb32a36f88294cabf88de316fc.zip | |
Auto merge of #6094 - ebroto:rustup, r=ebroto
Rustup changelog: none r? `@ghost`
| -rw-r--r-- | src/driver.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/driver.rs b/src/driver.rs index 47315fa64cd..f4f2259cefd 100644 --- a/src/driver.rs +++ b/src/driver.rs @@ -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) })) } |
