]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/lib.rs
Auto merge of #30448 - alexcrichton:llvmup, r=nikomatsakis
[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 #![unstable(feature = "rustc_private", issue = "27812")]
19 #![crate_type = "dylib"]
20 #![crate_type = "rlib"]
21 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
22       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
23       html_root_url = "https://doc.rust-lang.org/nightly/")]
24 #![cfg_attr(not(stage0), deny(warnings))]
25
26 #![feature(box_patterns)]
27 #![feature(box_syntax)]
28 #![feature(const_fn)]
29 #![feature(custom_attribute)]
30 #![allow(unused_attributes)]
31 #![feature(iter_arith)]
32 #![feature(libc)]
33 #![feature(quote)]
34 #![feature(rustc_diagnostic_macros)]
35 #![feature(rustc_private)]
36 #![feature(slice_patterns)]
37 #![feature(staged_api)]
38 #![feature(unicode)]
39
40 #![allow(trivial_casts)]
41
42 extern crate arena;
43 extern crate flate;
44 extern crate getopts;
45 extern crate graphviz;
46 extern crate libc;
47 extern crate rustc;
48 extern crate rustc_back;
49 extern crate rustc_data_structures;
50 extern crate rustc_front;
51 extern crate rustc_llvm as llvm;
52 extern crate rustc_mir;
53 extern crate rustc_platform_intrinsics as intrinsics;
54 extern crate serialize;
55
56 #[macro_use] extern crate log;
57 #[macro_use] extern crate syntax;
58
59 pub use rustc::session;
60 pub use rustc::middle;
61 pub use rustc::lint;
62 pub use rustc::util;
63
64 pub mod back {
65     pub use rustc_back::abi;
66     pub use rustc_back::rpath;
67     pub use rustc_back::svh;
68
69     pub mod archive;
70     pub mod linker;
71     pub mod link;
72     pub mod lto;
73     pub mod write;
74     pub mod msvc;
75 }
76
77 pub mod diagnostics;
78
79 pub mod trans;
80 pub mod save;
81
82 pub mod lib {
83     pub use llvm;
84 }
85
86 __build_diagnostic_array! { librustc_trans, DIAGNOSTICS }