]> git.lizzy.rs Git - rust.git/blob - src/librustc_llvm/build.rs
Auto merge of #38689 - pnkfelix:dont-check-stability-on-private-items, r=nikomatsakis
[rust.git] / src / librustc_llvm / build.rs
1 // Copyright 2015 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 extern crate gcc;
12 extern crate build_helper;
13
14 use std::process::Command;
15 use std::env;
16 use std::path::{PathBuf, Path};
17
18 use build_helper::output;
19
20 fn detect_llvm_link(llvm_config: &Path) -> (&'static str, Option<&'static str>) {
21     let mut version_cmd = Command::new(llvm_config);
22     version_cmd.arg("--version");
23     let version_output = output(&mut version_cmd);
24     let mut parts = version_output.split('.').take(2)
25         .filter_map(|s| s.parse::<u32>().ok());
26     if let (Some(major), Some(minor)) = (parts.next(), parts.next()) {
27         if major > 3 || (major == 3 && minor >= 9) {
28             // Force the link mode we want, preferring static by default, but
29             // possibly overridden by `configure --enable-llvm-link-shared`.
30             if env::var_os("LLVM_LINK_SHARED").is_some() {
31                 return ("dylib", Some("--link-shared"));
32             } else {
33                 return ("static", Some("--link-static"));
34             }
35         } else if major == 3 && minor == 8 {
36             // Find out LLVM's default linking mode.
37             let mut mode_cmd = Command::new(llvm_config);
38             mode_cmd.arg("--shared-mode");
39             if output(&mut mode_cmd).trim() == "shared" {
40                 return ("dylib", None);
41             } else {
42                 return ("static", None);
43             }
44         }
45     }
46     ("static", None)
47 }
48
49 fn main() {
50     println!("cargo:rustc-cfg=cargobuild");
51
52     let target = env::var("TARGET").expect("TARGET was not set");
53     let llvm_config = env::var_os("LLVM_CONFIG")
54         .map(PathBuf::from)
55         .unwrap_or_else(|| {
56             if let Some(dir) = env::var_os("CARGO_TARGET_DIR").map(PathBuf::from) {
57                 let to_test = dir.parent()
58                     .unwrap()
59                     .parent()
60                     .unwrap()
61                     .join(&target)
62                     .join("llvm/bin/llvm-config");
63                 if Command::new(&to_test).output().is_ok() {
64                     return to_test;
65                 }
66             }
67             PathBuf::from("llvm-config")
68         });
69
70     println!("cargo:rerun-if-changed={}", llvm_config.display());
71
72     // Test whether we're cross-compiling LLVM. This is a pretty rare case
73     // currently where we're producing an LLVM for a different platform than
74     // what this build script is currently running on.
75     //
76     // In that case, there's no guarantee that we can actually run the target,
77     // so the build system works around this by giving us the LLVM_CONFIG for
78     // the host platform. This only really works if the host LLVM and target
79     // LLVM are compiled the same way, but for us that's typically the case.
80     //
81     // We *want* detect this cross compiling situation by asking llvm-config
82     // what it's host-target is. If that's not the TARGET, then we're cross
83     // compiling. Unfortunately `llvm-config` seems either be buggy, or we're
84     // misconfiguring it, because the `i686-pc-windows-gnu` build of LLVM will
85     // report itself with a `--host-target` of `x86_64-pc-windows-gnu`. This
86     // tricks us into thinking we're doing a cross build when we aren't, so
87     // havoc ensues.
88     //
89     // In any case, if we're cross compiling, this generally just means that we
90     // can't trust all the output of llvm-config becaues it might be targeted
91     // for the host rather than the target. As a result a bunch of blocks below
92     // are gated on `if !is_crossed`
93     let target = env::var("TARGET").expect("TARGET was not set");
94     let host = env::var("HOST").expect("HOST was not set");
95     let is_crossed = target != host;
96
97     let optional_components =
98         ["x86", "arm", "aarch64", "mips", "powerpc", "pnacl", "systemz", "jsbackend", "msp430",
99          "sparc", "nvptx"];
100
101     // FIXME: surely we don't need all these components, right? Stuff like mcjit
102     //        or interpreter the compiler itself never uses.
103     let required_components = &["ipo",
104                                 "bitreader",
105                                 "bitwriter",
106                                 "linker",
107                                 "asmparser",
108                                 "mcjit",
109                                 "interpreter",
110                                 "instrumentation"];
111
112     let components = output(Command::new(&llvm_config).arg("--components"));
113     let mut components = components.split_whitespace().collect::<Vec<_>>();
114     components.retain(|c| optional_components.contains(c) || required_components.contains(c));
115
116     for component in required_components {
117         if !components.contains(component) {
118             panic!("require llvm component {} but wasn't found", component);
119         }
120     }
121
122     for component in components.iter() {
123         println!("cargo:rustc-cfg=llvm_component=\"{}\"", component);
124     }
125
126     // Link in our own LLVM shims, compiled with the same flags as LLVM
127     let mut cmd = Command::new(&llvm_config);
128     cmd.arg("--cxxflags");
129     let cxxflags = output(&mut cmd);
130     let mut cfg = gcc::Config::new();
131     for flag in cxxflags.split_whitespace() {
132         // Ignore flags like `-m64` when we're doing a cross build
133         if is_crossed && flag.starts_with("-m") {
134             continue;
135         }
136         cfg.flag(flag);
137     }
138
139     for component in &components[..] {
140         let mut flag = String::from("-DLLVM_COMPONENT_");
141         flag.push_str(&component.to_uppercase());
142         cfg.flag(&flag);
143     }
144
145     if env::var_os("LLVM_RUSTLLVM").is_some() {
146         cfg.flag("-DLLVM_RUSTLLVM");
147     }
148
149     println!("cargo:rerun-if-changed=../rustllvm/PassWrapper.cpp");
150     println!("cargo:rerun-if-changed=../rustllvm/RustWrapper.cpp");
151     println!("cargo:rerun-if-changed=../rustllvm/ArchiveWrapper.cpp");
152     cfg.file("../rustllvm/PassWrapper.cpp")
153        .file("../rustllvm/RustWrapper.cpp")
154        .file("../rustllvm/ArchiveWrapper.cpp")
155        .cpp(true)
156        .cpp_link_stdlib(None) // we handle this below
157        .compile("librustllvm.a");
158
159     let (llvm_kind, llvm_link_arg) = detect_llvm_link(&llvm_config);
160
161     // Link in all LLVM libraries, if we're uwring the "wrong" llvm-config then
162     // we don't pick up system libs because unfortunately they're for the host
163     // of llvm-config, not the target that we're attempting to link.
164     let mut cmd = Command::new(&llvm_config);
165     cmd.arg("--libs");
166
167     if let Some(link_arg) = llvm_link_arg {
168         cmd.arg(link_arg);
169     }
170
171     if !is_crossed {
172         cmd.arg("--system-libs");
173     }
174     cmd.args(&components[..]);
175
176     for lib in output(&mut cmd).split_whitespace() {
177         let name = if lib.starts_with("-l") {
178             &lib[2..]
179         } else if lib.starts_with("-") {
180             &lib[1..]
181         } else if Path::new(lib).exists() {
182             // On MSVC llvm-config will print the full name to libraries, but
183             // we're only interested in the name part
184             let name = Path::new(lib).file_name().unwrap().to_str().unwrap();
185             name.trim_right_matches(".lib")
186         } else if lib.ends_with(".lib") {
187             // Some MSVC libraries just come up with `.lib` tacked on, so chop
188             // that off
189             lib.trim_right_matches(".lib")
190         } else {
191             continue;
192         };
193
194         // Don't need or want this library, but LLVM's CMake build system
195         // doesn't provide a way to disable it, so filter it here even though we
196         // may or may not have built it. We don't reference anything from this
197         // library and it otherwise may just pull in extra dependencies on
198         // libedit which we don't want
199         if name == "LLVMLineEditor" {
200             continue;
201         }
202
203         let kind = if name.starts_with("LLVM") {
204             llvm_kind
205         } else {
206             "dylib"
207         };
208         println!("cargo:rustc-link-lib={}={}", kind, name);
209     }
210
211     // LLVM ldflags
212     //
213     // If we're a cross-compile of LLVM then unfortunately we can't trust these
214     // ldflags (largely where all the LLVM libs are located). Currently just
215     // hack around this by replacing the host triple with the target and pray
216     // that those -L directories are the same!
217     let mut cmd = Command::new(&llvm_config);
218     cmd.arg("--ldflags");
219     for lib in output(&mut cmd).split_whitespace() {
220         if lib.starts_with("-LIBPATH:") {
221             println!("cargo:rustc-link-search=native={}", &lib[9..]);
222         } else if is_crossed {
223             if lib.starts_with("-L") {
224                 println!("cargo:rustc-link-search=native={}",
225                          lib[2..].replace(&host, &target));
226             }
227         } else if lib.starts_with("-l") {
228             println!("cargo:rustc-link-lib={}", &lib[2..]);
229         } else if lib.starts_with("-L") {
230             println!("cargo:rustc-link-search=native={}", &lib[2..]);
231         }
232     }
233
234     // OpenBSD has a particular C++ runtime library name
235     let stdcppname = if target.contains("openbsd") {
236         "estdc++"
237     } else {
238         "stdc++"
239     };
240
241     // C++ runtime library
242     if !target.contains("msvc") {
243         if let Some(s) = env::var_os("LLVM_STATIC_STDCPP") {
244             assert!(!cxxflags.contains("stdlib=libc++"));
245             let path = PathBuf::from(s);
246             println!("cargo:rustc-link-search=native={}",
247                      path.parent().unwrap().display());
248             println!("cargo:rustc-link-lib=static={}", stdcppname);
249         } else if cxxflags.contains("stdlib=libc++") {
250             println!("cargo:rustc-link-lib=c++");
251         } else {
252             println!("cargo:rustc-link-lib={}", stdcppname);
253         }
254     }
255 }