]> git.lizzy.rs Git - rust.git/blob - src/librustc_codegen_utils/lib.rs
2141a763d165a328bcaf6b88faba71f40f8b1468
[rust.git] / src / librustc_codegen_utils / lib.rs
1 // Copyright 2017 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 //! # Note
12 //!
13 //! This API is completely unstable and subject to change.
14
15 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
16       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
17       html_root_url = "https://doc.rust-lang.org/nightly/")]
18
19 #![feature(box_patterns)]
20 #![feature(box_syntax)]
21 #![feature(custom_attribute)]
22 #![feature(nll)]
23 #![allow(unused_attributes)]
24 #![feature(quote)]
25 #![feature(rustc_diagnostic_macros)]
26
27 #![recursion_limit="256"]
28
29 extern crate flate2;
30 #[macro_use]
31 extern crate log;
32
33 extern crate serialize;
34 #[macro_use]
35 extern crate rustc;
36 extern crate rustc_allocator;
37 extern crate rustc_target;
38 extern crate rustc_metadata;
39 extern crate rustc_mir;
40 extern crate rustc_incremental;
41 extern crate syntax;
42 extern crate syntax_pos;
43 #[macro_use] extern crate rustc_data_structures;
44
45 use std::path::PathBuf;
46
47 use rustc::session::Session;
48 use rustc::ty::TyCtxt;
49
50 pub mod command;
51 pub mod link;
52 pub mod linker;
53 pub mod codegen_backend;
54 pub mod symbol_export;
55 pub mod symbol_names;
56 pub mod symbol_names_test;
57 pub mod common;
58
59 /// check for the #[rustc_error] annotation, which forces an
60 /// error in codegen. This is used to write compile-fail tests
61 /// that actually test that compilation succeeds without
62 /// reporting an error.
63 pub fn check_for_rustc_errors_attr(tcx: TyCtxt) {
64     if let Some((id, span, _)) = *tcx.sess.entry_fn.borrow() {
65         let main_def_id = tcx.hir.local_def_id(id);
66
67         if tcx.has_attr(main_def_id, "rustc_error") {
68             tcx.sess.span_fatal(span, "compilation successful");
69         }
70     }
71 }
72
73 #[derive(Copy, Clone, Debug, PartialEq)]
74 pub enum ModuleKind {
75     Regular,
76     Metadata,
77     Allocator,
78 }
79
80 #[derive(Debug)]
81 pub struct CompiledModule {
82     pub name: String,
83     pub kind: ModuleKind,
84     pub object: Option<PathBuf>,
85     pub bytecode: Option<PathBuf>,
86     pub bytecode_compressed: Option<PathBuf>,
87 }
88
89 pub fn find_library(name: &str, search_paths: &[PathBuf], sess: &Session)
90                     -> PathBuf {
91     // On Windows, static libraries sometimes show up as libfoo.a and other
92     // times show up as foo.lib
93     let oslibname = format!("{}{}{}",
94                             sess.target.target.options.staticlib_prefix,
95                             name,
96                             sess.target.target.options.staticlib_suffix);
97     let unixlibname = format!("lib{}.a", name);
98
99     for path in search_paths {
100         debug!("looking for {} inside {:?}", name, path);
101         let test = path.join(&oslibname);
102         if test.exists() { return test }
103         if oslibname != unixlibname {
104             let test = path.join(&unixlibname);
105             if test.exists() { return test }
106         }
107     }
108     sess.fatal(&format!("could not find native static library `{}`, \
109                          perhaps an -L flag is missing?", name));
110 }
111
112 __build_diagnostic_array! { librustc_codegen_utils, DIAGNOSTICS }