]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/lib.rs
5ffe9b2d6471acc1a2ceaa5d20a1f69f1ec073a9
[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 #![crate_type = "dylib"]
20 #![crate_type = "rlib"]
21 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
22       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
23       html_root_url = "http://doc.rust-lang.org/nightly/")]
24
25 #![allow(unknown_features)]
26 #![feature(default_type_params, globs, macro_rules, phase, quote)]
27 #![feature(slicing_syntax, unsafe_destructor)]
28 #![feature(rustc_diagnostic_macros)]
29 #![feature(unboxed_closures)]
30 #![feature(old_orphan_check)]
31
32 extern crate arena;
33 extern crate flate;
34 extern crate getopts;
35 extern crate graphviz;
36 extern crate libc;
37 extern crate rustc;
38 extern crate rustc_back;
39 #[phase(plugin, link)] extern crate log;
40 #[phase(plugin, link)] extern crate syntax;
41 extern crate serialize;
42 extern crate "rustc_llvm" as llvm;
43
44 pub use rustc::session;
45 pub use rustc::metadata;
46 pub use rustc::middle;
47 pub use rustc::lint;
48 pub use rustc::plugin;
49 pub use rustc::util;
50
51 pub mod back {
52     pub use rustc_back::abi;
53     pub use rustc_back::archive;
54     pub use rustc_back::arm;
55     pub use rustc_back::mips;
56     pub use rustc_back::mipsel;
57     pub use rustc_back::rpath;
58     pub use rustc_back::svh;
59     pub use rustc_back::target_strs;
60     pub use rustc_back::x86;
61     pub use rustc_back::x86_64;
62
63     pub mod link;
64     pub mod lto;
65     pub mod write;
66
67 }
68
69 pub mod trans;
70 pub mod save;
71
72 pub mod lib {
73     pub use llvm;
74 }