]> git.proxmox.com Git - rustc.git/blob - src/librustc_trans/lib.rs
Imported Upstream version 1.1.0+dfsg1
[rustc.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 // Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
18 #![cfg_attr(stage0, feature(custom_attribute))]
19 #![crate_name = "rustc_trans"]
20 #![unstable(feature = "rustc_private")]
21 #![staged_api]
22 #![crate_type = "dylib"]
23 #![crate_type = "rlib"]
24 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
25 html_favicon_url = "http://www.rust-lang.org/favicon.ico",
26 html_root_url = "http://doc.rust-lang.org/nightly/")]
27
28 #![feature(alloc)]
29 #![feature(box_patterns)]
30 #![feature(box_syntax)]
31 #![feature(collections)]
32 #![feature(core)]
33 #![feature(libc)]
34 #![feature(quote)]
35 #![feature(rustc_diagnostic_macros)]
36 #![feature(rustc_private)]
37 #![feature(staged_api)]
38 #![feature(unicode)]
39 #![feature(path_ext)]
40 #![feature(path_relative_from)]
41
42 #![allow(trivial_casts)]
43
44 extern crate arena;
45 extern crate flate;
46 extern crate getopts;
47 extern crate graphviz;
48 extern crate libc;
49 extern crate rustc;
50 extern crate rustc_back;
51 extern crate serialize;
52 extern crate rustc_llvm as llvm;
53
54 #[macro_use] extern crate log;
55 #[macro_use] extern crate syntax;
56
57 pub use rustc::session;
58 pub use rustc::metadata;
59 pub use rustc::middle;
60 pub use rustc::lint;
61 pub use rustc::plugin;
62 pub use rustc::util;
63
64 pub mod back {
65 pub use rustc_back::abi;
66 pub use rustc_back::archive;
67 pub use rustc_back::arm;
68 pub use rustc_back::mips;
69 pub use rustc_back::mipsel;
70 pub use rustc_back::rpath;
71 pub use rustc_back::svh;
72 pub use rustc_back::target_strs;
73 pub use rustc_back::x86;
74 pub use rustc_back::x86_64;
75
76 pub mod link;
77 pub mod lto;
78 pub mod write;
79
80 }
81
82 pub mod trans;
83 pub mod save;
84
85 pub mod lib {
86 pub use llvm;
87 }