]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/sanity.rs
Utilize interning to allow Copy/Clone steps
[rust.git] / src / bootstrap / sanity.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 //! Sanity checking performed by rustbuild before actually executing anything.
12 //!
13 //! This module contains the implementation of ensuring that the build
14 //! environment looks reasonable before progressing. This will verify that
15 //! various programs like git and python exist, along with ensuring that all C
16 //! compilers for cross-compiling are found.
17 //!
18 //! In theory if we get past this phase it's a bug if a build fails, but in
19 //! practice that's likely not true!
20
21 use std::collections::HashMap;
22 use std::env;
23 use std::ffi::{OsString, OsStr};
24 use std::fs;
25 use std::process::Command;
26 use std::path::PathBuf;
27
28 use build_helper::output;
29
30 use Build;
31
32 struct Finder {
33     cache: HashMap<OsString, Option<PathBuf>>,
34     path: OsString,
35 }
36
37 impl Finder {
38     fn new() -> Self {
39         Self {
40             cache: HashMap::new(),
41             path: env::var_os("PATH").unwrap_or_default()
42         }
43     }
44
45     fn maybe_have<S: AsRef<OsStr>>(&mut self, cmd: S) -> Option<PathBuf> {
46         let cmd: OsString = cmd.as_ref().into();
47         let path = self.path.clone();
48         self.cache.entry(cmd.clone()).or_insert_with(|| {
49             for path in env::split_paths(&path) {
50                 let target = path.join(&cmd);
51                 let mut cmd_alt = cmd.clone();
52                 cmd_alt.push(".exe");
53                 if target.is_file() || // some/path/git
54                 target.with_extension("exe").exists() || // some/path/git.exe
55                 target.join(&cmd_alt).exists() { // some/path/git/git.exe
56                     return Some(target);
57                 }
58             }
59             None
60         }).clone()
61     }
62
63     fn must_have<S: AsRef<OsStr>>(&mut self, cmd: S) -> PathBuf {
64         self.maybe_have(&cmd).unwrap_or_else(|| {
65             panic!("\n\ncouldn't find required command: {:?}\n\n", cmd.as_ref());
66         })
67     }
68 }
69
70 pub fn check(build: &mut Build) {
71     let path = env::var_os("PATH").unwrap_or_default();
72     // On Windows, quotes are invalid characters for filename paths, and if
73     // one is present as part of the PATH then that can lead to the system
74     // being unable to identify the files properly. See
75     // https://github.com/rust-lang/rust/issues/34959 for more details.
76     if cfg!(windows) && path.to_string_lossy().contains("\"") {
77         panic!("PATH contains invalid character '\"'");
78     }
79
80     let mut cmd_finder = Finder::new();
81     // If we've got a git directory we're gona need git to update
82     // submodules and learn about various other aspects.
83     if build.rust_info.is_git() {
84         cmd_finder.must_have("git");
85     }
86
87     // We need cmake, but only if we're actually building LLVM or sanitizers.
88     let building_llvm = build.config.host.iter()
89         .filter_map(|host| build.config.target_config.get(host))
90         .any(|config| config.llvm_config.is_none());
91     if building_llvm || build.config.sanitizers {
92         cmd_finder.must_have("cmake");
93     }
94
95     // Ninja is currently only used for LLVM itself.
96     // Some Linux distros rename `ninja` to `ninja-build`.
97     // CMake can work with either binary name.
98     if building_llvm && build.config.ninja && cmd_finder.maybe_have("ninja-build").is_none() {
99         cmd_finder.must_have("ninja");
100     }
101
102     build.config.python = build.config.python.take().map(|p| cmd_finder.must_have(p))
103         .or_else(|| env::var_os("BOOTSTRAP_PYTHON").map(PathBuf::from)) // set by bootstrap.py
104         .or_else(|| cmd_finder.maybe_have("python2.7"))
105         .or_else(|| cmd_finder.maybe_have("python2"))
106         .or_else(|| Some(cmd_finder.must_have("python")));
107
108     build.config.nodejs = build.config.nodejs.take().map(|p| cmd_finder.must_have(p))
109         .or_else(|| cmd_finder.maybe_have("node"))
110         .or_else(|| cmd_finder.maybe_have("nodejs"));
111
112     build.config.gdb = build.config.gdb.take().map(|p| cmd_finder.must_have(p))
113         .or_else(|| cmd_finder.maybe_have("gdb"));
114
115     // We're gonna build some custom C code here and there, host triples
116     // also build some C++ shims for LLVM so we need a C++ compiler.
117     for target in &build.config.target {
118         // On emscripten we don't actually need the C compiler to just
119         // build the target artifacts, only for testing. For the sake
120         // of easier bot configuration, just skip detection.
121         if target.contains("emscripten") {
122             continue;
123         }
124
125         cmd_finder.must_have(build.cc(*target));
126         if let Some(ar) = build.ar(*target) {
127             cmd_finder.must_have(ar);
128         }
129     }
130
131     for host in build.config.host.iter() {
132         cmd_finder.must_have(build.cxx(*host).unwrap());
133
134         // The msvc hosts don't use jemalloc, turn it off globally to
135         // avoid packaging the dummy liballoc_jemalloc on that platform.
136         if host.contains("msvc") {
137             build.config.use_jemalloc = false;
138         }
139     }
140
141     // Externally configured LLVM requires FileCheck to exist
142     let filecheck = build.llvm_filecheck(build.build);
143     if !filecheck.starts_with(&build.out) && !filecheck.exists() && build.config.codegen_tests {
144         panic!("FileCheck executable {:?} does not exist", filecheck);
145     }
146
147     for target in &build.config.target {
148         // Can't compile for iOS unless we're on macOS
149         if target.contains("apple-ios") &&
150            !build.build.contains("apple-darwin") {
151             panic!("the iOS target is only supported on macOS");
152         }
153
154         // Make sure musl-root is valid if specified
155         if target.contains("musl") && !target.contains("mips") {
156             match build.musl_root(*target) {
157                 Some(root) => {
158                     if fs::metadata(root.join("lib/libc.a")).is_err() {
159                         panic!("couldn't find libc.a in musl dir: {}",
160                                root.join("lib").display());
161                     }
162                     if fs::metadata(root.join("lib/libunwind.a")).is_err() {
163                         panic!("couldn't find libunwind.a in musl dir: {}",
164                                root.join("lib").display());
165                     }
166                 }
167                 None => {
168                     panic!("when targeting MUSL either the rust.musl-root \
169                             option or the target.$TARGET.musl-root option must \
170                             be specified in config.toml")
171                 }
172             }
173         }
174
175         if target.contains("msvc") {
176             // There are three builds of cmake on windows: MSVC, MinGW, and
177             // Cygwin. The Cygwin build does not have generators for Visual
178             // Studio, so detect that here and error.
179             let out = output(Command::new("cmake").arg("--help"));
180             if !out.contains("Visual Studio") {
181                 panic!("
182 cmake does not support Visual Studio generators.
183
184 This is likely due to it being an msys/cygwin build of cmake,
185 rather than the required windows version, built using MinGW
186 or Visual Studio.
187
188 If you are building under msys2 try installing the mingw-w64-x86_64-cmake
189 package instead of cmake:
190
191 $ pacman -R cmake && pacman -S mingw-w64-x86_64-cmake
192 ");
193             }
194         }
195     }
196
197     let run = |cmd: &mut Command| {
198         cmd.output().map(|output| {
199             String::from_utf8_lossy(&output.stdout)
200                    .lines().next().unwrap()
201                    .to_string()
202         })
203     };
204     build.lldb_version = run(Command::new("lldb").arg("--version")).ok();
205     if build.lldb_version.is_some() {
206         build.lldb_python_dir = run(Command::new("lldb").arg("-P")).ok();
207     }
208
209     if let Some(ref s) = build.config.ccache {
210         cmd_finder.must_have(s);
211     }
212 }