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-09-30 12:08:37 -05:00
|
|
|
#![feature(rustc_private)]
|
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;
|
2015-11-24 17:23:22 -06:00
|
|
|
extern crate rustc_metadata;
|
2016-06-22 11:50:19 -05:00
|
|
|
extern crate rustc_errors;
|
2014-11-28 22:56:09 -06:00
|
|
|
extern crate syntax;
|
|
|
|
|
2016-03-29 12:19:37 -05:00
|
|
|
use rustc::dep_graph::DepGraph;
|
2014-11-28 22:56:09 -06:00
|
|
|
use rustc::session::{build_session, Session};
|
2015-09-30 12:08:37 -05:00
|
|
|
use rustc::session::config::{basic_options, build_configuration, Input, OutputType};
|
2016-03-09 21:49:40 -06:00
|
|
|
use rustc_driver::driver::{compile_input, CompileController, anon_src};
|
2015-11-24 17:23:22 -06:00
|
|
|
use rustc_metadata::cstore::CStore;
|
2016-06-22 11:50:19 -05:00
|
|
|
use rustc_errors::registry::Registry;
|
2014-11-28 22:56:09 -06:00
|
|
|
|
2015-02-26 23:00:43 -06:00
|
|
|
use std::path::PathBuf;
|
2015-11-22 13:02:04 -06:00
|
|
|
use std::rc::Rc;
|
2015-02-26 23:00:43 -06:00
|
|
|
|
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-11-22 13:02:04 -06:00
|
|
|
fn basic_sess(sysroot: PathBuf) -> (Session, Rc<CStore>) {
|
2014-11-28 22:56:09 -06:00
|
|
|
let mut opts = basic_options();
|
2015-09-30 12:08:37 -05:00
|
|
|
opts.output_types.insert(OutputType::Exe, None);
|
2014-11-28 22:56:09 -06:00
|
|
|
opts.maybe_sysroot = Some(sysroot);
|
|
|
|
|
2015-04-27 21:48:22 -05:00
|
|
|
let descriptions = Registry::new(&rustc::DIAGNOSTICS);
|
2016-03-29 12:19:37 -05:00
|
|
|
let dep_graph = DepGraph::new(opts.build_dep_graph());
|
2016-07-11 04:42:31 -05:00
|
|
|
let cstore = Rc::new(CStore::new(&dep_graph));
|
2016-03-29 12:19:37 -05:00
|
|
|
let sess = build_session(opts, &dep_graph, None, descriptions, cstore.clone());
|
2015-02-25 05:44:44 -06:00
|
|
|
rustc_lint::register_builtins(&mut sess.lint_store.borrow_mut(), Some(&sess));
|
2015-11-22 13:02:04 -06:00
|
|
|
(sess, cstore)
|
2014-11-28 22:56:09 -06:00
|
|
|
}
|
|
|
|
|
2015-02-26 23:00:43 -06:00
|
|
|
fn compile(code: String, output: PathBuf, sysroot: PathBuf) {
|
2015-11-22 13:02:04 -06:00
|
|
|
let (sess, cstore) = basic_sess(sysroot);
|
2014-11-28 22:56:09 -06:00
|
|
|
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
|
|
|
|
2016-01-20 18:19:20 -06:00
|
|
|
compile_input(&sess, &cstore,
|
2014-11-28 22:56:09 -06:00
|
|
|
cfg,
|
2016-03-09 21:49:40 -06:00
|
|
|
&Input::Str { name: anon_src(), input: code },
|
2014-11-28 22:56:09 -06:00
|
|
|
&None,
|
|
|
|
&Some(output),
|
2015-01-10 20:03:34 -06:00
|
|
|
None,
|
2016-01-05 16:38:11 -06:00
|
|
|
&control);
|
2014-11-28 22:56:09 -06:00
|
|
|
}
|