]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/lib.rs
/*! -> //!
[rust.git] / src / librustc_trans / lib.rs
1 // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! The Rust compiler.
12 //!
13 //! # Note
14 //!
15 //! This API is completely unstable and subject to change.
16
17 #![crate_name = "rustc_trans"]
18 #![experimental]
19 #![comment = "The Rust compiler back end and driver"]
20 #![license = "MIT/ASL2"]
21 #![crate_type = "dylib"]
22 #![crate_type = "rlib"]
23 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
24       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
25       html_root_url = "http://doc.rust-lang.org/nightly/")]
26
27 #![feature(default_type_params, globs, if_let, import_shadowing, macro_rules, phase, quote)]
28 #![feature(slicing_syntax, unsafe_destructor)]
29 #![feature(rustc_diagnostic_macros)]
30
31 extern crate arena;
32 extern crate flate;
33 extern crate getopts;
34 extern crate graphviz;
35 extern crate libc;
36 extern crate rustc;
37 extern crate rustc_back;
38 #[phase(plugin, link)] extern crate log;
39 #[phase(plugin, link)] extern crate syntax;
40 extern crate serialize;
41 extern crate "rustc_llvm" as llvm;
42
43 pub use rustc::session;
44 pub use rustc::metadata;
45 pub use rustc::middle;
46 pub use rustc::lint;
47 pub use rustc::plugin;
48 pub use rustc::util;
49
50 pub mod back {
51     pub use rustc_back::abi;
52     pub use rustc_back::archive;
53     pub use rustc_back::arm;
54     pub use rustc_back::mips;
55     pub use rustc_back::mipsel;
56     pub use rustc_back::rpath;
57     pub use rustc_back::svh;
58     pub use rustc_back::target_strs;
59     pub use rustc_back::x86;
60     pub use rustc_back::x86_64;
61
62     pub mod link;
63     pub mod lto;
64     pub mod write;
65
66 }
67
68 pub mod trans;
69 pub mod save;
70 pub mod driver;
71
72 pub mod lib {
73     pub use llvm;
74 }
75
76 pub fn main() {
77     let args = std::os::args();
78     let result = driver::run(args);
79     std::os::set_exit_status(result);
80 }
81
82 #[cfg(test)]
83 pub mod test;