mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-03 00:49:38 +03:00
rustup
This commit is contained in:
+3
-1
@@ -11,6 +11,7 @@
|
||||
extern crate log;
|
||||
|
||||
use rustc::session::Session;
|
||||
use rustc::middle::cstore::CrateStore;
|
||||
use rustc_driver::{Compilation, CompilerCalls, RustcDefaultCalls};
|
||||
use rustc_driver::driver::{CompileState, CompileController};
|
||||
use rustc::session::config::{self, Input, ErrorOutputType};
|
||||
@@ -64,11 +65,12 @@ fn late_callback(
|
||||
&mut self,
|
||||
matches: &getopts::Matches,
|
||||
sess: &Session,
|
||||
cstore: &CrateStore,
|
||||
input: &Input,
|
||||
odir: &Option<PathBuf>,
|
||||
ofile: &Option<PathBuf>,
|
||||
) -> Compilation {
|
||||
self.default.late_callback(matches, sess, input, odir, ofile)
|
||||
self.default.late_callback(matches, sess, cstore, input, odir, ofile)
|
||||
}
|
||||
fn build_controller(
|
||||
&mut self,
|
||||
|
||||
Reference in New Issue
Block a user