2014-11-28 22:56:09 -06:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-03-23 17:54:39 -05:00
|
|
|
#![feature(rustc_private, path, convert)]
|
2015-03-05 20:33:58 -06:00
|
|
|
|
2014-11-28 22:56:09 -06:00
|
|
|
extern crate rustc;
|
2014-12-04 23:00:06 -06:00
|
|
|
extern crate rustc_driver;
|
2015-02-25 05:44:44 -06:00
|
|
|
extern crate rustc_lint;
|
2014-11-28 22:56:09 -06:00
|
|
|
extern crate syntax;
|
|
|
|
|
|
|
|
use rustc::session::{build_session, Session};
|
2014-12-04 23:00:06 -06:00
|
|
|
use rustc::session::config::{basic_options, build_configuration, Input, OutputTypeExe};
|
2015-01-10 20:03:34 -06:00
|
|
|
use rustc_driver::driver::{compile_input, CompileController};
|
2014-11-28 22:56:09 -06:00
|
|
|
use syntax::diagnostics::registry::Registry;
|
|
|
|
|
2015-02-26 23:00:43 -06:00
|
|
|
use std::path::PathBuf;
|
|
|
|
|
2014-11-28 22:56:09 -06:00
|
|
|
fn main() {
|
|
|
|
let src = r#"
|
|
|
|
fn main() {}
|
|
|
|
"#;
|
|
|
|
|
2015-02-16 08:04:02 -06:00
|
|
|
let args: Vec<String> = std::env::args().collect();
|
2014-11-28 22:56:09 -06:00
|
|
|
|
|
|
|
if args.len() < 4 {
|
|
|
|
panic!("expected rustc path");
|
|
|
|
}
|
|
|
|
|
2015-03-23 17:54:39 -05:00
|
|
|
let tmpdir = PathBuf::from(&args[1]);
|
2014-11-28 22:56:09 -06:00
|
|
|
|
2015-03-23 17:54:39 -05:00
|
|
|
let mut sysroot = PathBuf::from(&args[3]);
|
2014-11-28 22:56:09 -06:00
|
|
|
sysroot.pop();
|
|
|
|
sysroot.pop();
|
|
|
|
|
|
|
|
compile(src.to_string(), tmpdir.join("out"), sysroot.clone());
|
|
|
|
|
|
|
|
compile(src.to_string(), tmpdir.join("out"), sysroot.clone());
|
|
|
|
}
|
|
|
|
|
2015-02-26 23:00:43 -06:00
|
|
|
fn basic_sess(sysroot: PathBuf) -> Session {
|
2014-11-28 22:56:09 -06:00
|
|
|
let mut opts = basic_options();
|
|
|
|
opts.output_types = vec![OutputTypeExe];
|
|
|
|
opts.maybe_sysroot = Some(sysroot);
|
|
|
|
|
2015-04-27 21:48:22 -05:00
|
|
|
let descriptions = Registry::new(&rustc::DIAGNOSTICS);
|
2014-11-28 22:56:09 -06:00
|
|
|
let sess = build_session(opts, None, descriptions);
|
2015-02-25 05:44:44 -06:00
|
|
|
rustc_lint::register_builtins(&mut sess.lint_store.borrow_mut(), Some(&sess));
|
2014-11-28 22:56:09 -06:00
|
|
|
sess
|
|
|
|
}
|
|
|
|
|
2015-02-26 23:00:43 -06:00
|
|
|
fn compile(code: String, output: PathBuf, sysroot: PathBuf) {
|
2014-11-28 22:56:09 -06:00
|
|
|
let sess = basic_sess(sysroot);
|
|
|
|
let cfg = build_configuration(&sess);
|
2015-01-10 20:03:34 -06:00
|
|
|
let control = CompileController::basic();
|
2014-11-28 22:56:09 -06:00
|
|
|
|
|
|
|
compile_input(sess,
|
|
|
|
cfg,
|
2014-12-04 23:00:06 -06:00
|
|
|
&Input::Str(code),
|
2014-11-28 22:56:09 -06:00
|
|
|
&None,
|
|
|
|
&Some(output),
|
2015-01-10 20:03:34 -06:00
|
|
|
None,
|
|
|
|
control);
|
2014-11-28 22:56:09 -06:00
|
|
|
}
|