]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/lib.rs
f89580b768ea5c62c3615a7099c9a3187471b8c9
[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 /*!
12
13 The Rust compiler.
14
15 # Note
16
17 This API is completely unstable and subject to change.
18
19 */
20
21 #![crate_name = "rustc_trans"]
22 #![experimental]
23 #![comment = "The Rust compiler back end and driver"]
24 #![license = "MIT/ASL2"]
25 #![crate_type = "dylib"]
26 #![crate_type = "rlib"]
27 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
28       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
29       html_root_url = "http://doc.rust-lang.org/nightly/")]
30
31 #![feature(default_type_params, globs, if_let, import_shadowing, macro_rules, phase, quote)]
32 #![feature(slicing_syntax, unsafe_destructor)]
33 #![feature(rustc_diagnostic_macros)]
34
35 extern crate arena;
36 extern crate flate;
37 extern crate getopts;
38 extern crate graphviz;
39 extern crate libc;
40 extern crate rustc;
41 extern crate rustc_back;
42 #[phase(plugin, link)] extern crate log;
43 #[phase(plugin, link)] extern crate syntax;
44 extern crate serialize;
45 extern crate "rustc_llvm" as llvm;
46
47 pub use rustc::session;
48 pub use rustc::metadata;
49 pub use rustc::middle;
50 pub use rustc::lint;
51 pub use rustc::plugin;
52 pub use rustc::util;
53
54 pub mod back {
55     pub use rustc_back::abi;
56     pub use rustc_back::archive;
57     pub use rustc_back::arm;
58     pub use rustc_back::mips;
59     pub use rustc_back::mipsel;
60     pub use rustc_back::rpath;
61     pub use rustc_back::svh;
62     pub use rustc_back::target_strs;
63     pub use rustc_back::x86;
64     pub use rustc_back::x86_64;
65
66     pub mod link;
67     pub mod lto;
68     pub mod write;
69
70 }
71
72 pub mod trans;
73 pub mod save;
74 pub mod driver;
75
76 pub mod lib {
77     pub use llvm;
78 }
79
80 pub fn main() {
81     let args = std::os::args();
82     let result = driver::run(args);
83     std::os::set_exit_status(result);
84 }
85
86 #[cfg(test)]
87 pub mod test;