]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/bin/rustc.rs
a1333ff3dc7008cf3850414cc5b44eed18ff150d
[rust.git] / src / bootstrap / bin / rustc.rs
1 //! Shim which is passed to Cargo as "rustc" when running the bootstrap.
2 //!
3 //! This shim will take care of some various tasks that our build process
4 //! requires that Cargo can't quite do through normal configuration:
5 //!
6 //! 1. When compiling build scripts and build dependencies, we need a guaranteed
7 //!    full standard library available. The only compiler which actually has
8 //!    this is the snapshot, so we detect this situation and always compile with
9 //!    the snapshot compiler.
10 //! 2. We pass a bunch of `--cfg` and other flags based on what we're compiling
11 //!    (and this slightly differs based on a whether we're using a snapshot or
12 //!    not), so we do that all here.
13 //!
14 //! This may one day be replaced by RUSTFLAGS, but the dynamic nature of
15 //! switching compilers for the bootstrap and for build scripts will probably
16 //! never get replaced.
17
18 #![deny(warnings)]
19
20 use std::env;
21 use std::ffi::OsString;
22 use std::io;
23 use std::path::PathBuf;
24 use std::process::Command;
25 use std::str::FromStr;
26 use std::time::Instant;
27
28 fn main() {
29     let mut args = env::args_os().skip(1).collect::<Vec<_>>();
30
31     // Append metadata suffix for internal crates. See the corresponding entry
32     // in bootstrap/lib.rs for details.
33     if let Ok(s) = env::var("RUSTC_METADATA_SUFFIX") {
34         for i in 1..args.len() {
35             // Dirty code for borrowing issues
36             let mut new = None;
37             if let Some(current_as_str) = args[i].to_str() {
38                 if (&*args[i - 1] == "-C" && current_as_str.starts_with("metadata")) ||
39                    current_as_str.starts_with("-Cmetadata") {
40                     new = Some(format!("{}-{}", current_as_str, s));
41                 }
42             }
43             if let Some(new) = new { args[i] = new.into(); }
44         }
45     }
46
47     // Drop `--error-format json` because despite our desire for json messages
48     // from Cargo we don't want any from rustc itself.
49     if let Some(n) = args.iter().position(|n| n == "--error-format") {
50         args.remove(n);
51         args.remove(n);
52     }
53
54     if let Some(s) = env::var_os("RUSTC_ERROR_FORMAT") {
55         args.push("--error-format".into());
56         args.push(s);
57     }
58
59     // Detect whether or not we're a build script depending on whether --target
60     // is passed (a bit janky...)
61     let target = args.windows(2)
62         .find(|w| &*w[0] == "--target")
63         .and_then(|w| w[1].to_str());
64     let version = args.iter().find(|w| &**w == "-vV");
65
66     let verbose = match env::var("RUSTC_VERBOSE") {
67         Ok(s) => usize::from_str(&s).expect("RUSTC_VERBOSE should be an integer"),
68         Err(_) => 0,
69     };
70
71     // Use a different compiler for build scripts, since there may not yet be a
72     // libstd for the real compiler to use. However, if Cargo is attempting to
73     // determine the version of the compiler, the real compiler needs to be
74     // used. Currently, these two states are differentiated based on whether
75     // --target and -vV is/isn't passed.
76     let (rustc, libdir) = if target.is_none() && version.is_none() {
77         ("RUSTC_SNAPSHOT", "RUSTC_SNAPSHOT_LIBDIR")
78     } else {
79         ("RUSTC_REAL", "RUSTC_LIBDIR")
80     };
81     let stage = env::var("RUSTC_STAGE").expect("RUSTC_STAGE was not set");
82     let sysroot = env::var_os("RUSTC_SYSROOT").expect("RUSTC_SYSROOT was not set");
83     let on_fail = env::var_os("RUSTC_ON_FAIL").map(|of| Command::new(of));
84
85     let rustc = env::var_os(rustc).unwrap_or_else(|| panic!("{:?} was not set", rustc));
86     let libdir = env::var_os(libdir).unwrap_or_else(|| panic!("{:?} was not set", libdir));
87     let mut dylib_path = bootstrap::util::dylib_path();
88     dylib_path.insert(0, PathBuf::from(&libdir));
89
90     let mut cmd = Command::new(rustc);
91     cmd.args(&args)
92         .env(bootstrap::util::dylib_path_var(),
93              env::join_paths(&dylib_path).unwrap());
94     let mut maybe_crate = None;
95
96     // Get the name of the crate we're compiling, if any.
97     let maybe_crate_name = args.windows(2)
98         .find(|a| &*a[0] == "--crate-name")
99         .map(|crate_name| &*crate_name[1]);
100
101     if let Some(current_crate) = maybe_crate_name {
102         if let Some(target) = env::var_os("RUSTC_TIME") {
103             if target == "all" ||
104                target.into_string().unwrap().split(",").any(|c| c.trim() == current_crate)
105             {
106                 cmd.arg("-Ztime");
107             }
108         }
109     }
110
111     // Non-zero stages must all be treated uniformly to avoid problems when attempting to uplift
112     // compiler libraries and such from stage 1 to 2.
113     if stage == "0" {
114         cmd.arg("--cfg").arg("bootstrap");
115     }
116
117     // Print backtrace in case of ICE
118     if env::var("RUSTC_BACKTRACE_ON_ICE").is_ok() && env::var("RUST_BACKTRACE").is_err() {
119         cmd.env("RUST_BACKTRACE", "1");
120     }
121
122     cmd.env("RUSTC_BREAK_ON_ICE", "1");
123
124     if let Ok(debuginfo_level) = env::var("RUSTC_DEBUGINFO_LEVEL") {
125         cmd.arg(format!("-Cdebuginfo={}", debuginfo_level));
126     }
127
128     if let Some(target) = target {
129         // The stage0 compiler has a special sysroot distinct from what we
130         // actually downloaded, so we just always pass the `--sysroot` option.
131         cmd.arg("--sysroot").arg(&sysroot);
132
133         cmd.arg("-Zexternal-macro-backtrace");
134
135         // Link crates to the proc macro crate for the target, but use a host proc macro crate
136         // to actually run the macros
137         if env::var_os("RUST_DUAL_PROC_MACROS").is_some() {
138             cmd.arg("-Zdual-proc-macros");
139         }
140
141         // When we build Rust dylibs they're all intended for intermediate
142         // usage, so make sure we pass the -Cprefer-dynamic flag instead of
143         // linking all deps statically into the dylib.
144         if env::var_os("RUSTC_NO_PREFER_DYNAMIC").is_none() {
145             cmd.arg("-Cprefer-dynamic");
146         }
147
148         // Help the libc crate compile by assisting it in finding various
149         // sysroot native libraries.
150         if let Some(s) = env::var_os("MUSL_ROOT") {
151             if target.contains("musl") {
152                 let mut root = OsString::from("native=");
153                 root.push(&s);
154                 root.push("/lib");
155                 cmd.arg("-L").arg(&root);
156             }
157         }
158         if let Some(s) = env::var_os("WASI_ROOT") {
159             let mut root = OsString::from("native=");
160             root.push(&s);
161             root.push("/lib/wasm32-wasi");
162             cmd.arg("-L").arg(&root);
163         }
164
165         // Override linker if necessary.
166         if let Ok(target_linker) = env::var("RUSTC_TARGET_LINKER") {
167             cmd.arg(format!("-Clinker={}", target_linker));
168         }
169
170         let crate_name = maybe_crate_name.unwrap();
171         maybe_crate = Some(crate_name);
172
173         // If we're compiling specifically the `panic_abort` crate then we pass
174         // the `-C panic=abort` option. Note that we do not do this for any
175         // other crate intentionally as this is the only crate for now that we
176         // ship with panic=abort.
177         //
178         // This... is a bit of a hack how we detect this. Ideally this
179         // information should be encoded in the crate I guess? Would likely
180         // require an RFC amendment to RFC 1513, however.
181         //
182         // `compiler_builtins` are unconditionally compiled with panic=abort to
183         // workaround undefined references to `rust_eh_unwind_resume` generated
184         // otherwise, see issue https://github.com/rust-lang/rust/issues/43095.
185         if crate_name == "panic_abort" ||
186            crate_name == "compiler_builtins" && stage != "0" {
187             cmd.arg("-C").arg("panic=abort");
188         }
189
190         // Set various options from config.toml to configure how we're building
191         // code.
192         let debug_assertions = match env::var("RUSTC_DEBUG_ASSERTIONS") {
193             Ok(s) => if s == "true" { "y" } else { "n" },
194             Err(..) => "n",
195         };
196
197         // The compiler builtins are pretty sensitive to symbols referenced in
198         // libcore and such, so we never compile them with debug assertions.
199         if crate_name == "compiler_builtins" {
200             cmd.arg("-C").arg("debug-assertions=no");
201         } else {
202             cmd.arg("-C").arg(format!("debug-assertions={}", debug_assertions));
203         }
204
205         if let Ok(s) = env::var("RUSTC_CODEGEN_UNITS") {
206             cmd.arg("-C").arg(format!("codegen-units={}", s));
207         }
208
209         // Emit save-analysis info.
210         if env::var("RUSTC_SAVE_ANALYSIS") == Ok("api".to_string()) {
211             cmd.arg("-Zsave-analysis");
212             cmd.env("RUST_SAVE_ANALYSIS_CONFIG",
213                     "{\"output_file\": null,\"full_docs\": false,\
214                      \"pub_only\": true,\"reachable_only\": false,\
215                      \"distro_crate\": true,\"signatures\": false,\"borrow_data\": false}");
216         }
217
218         // Dealing with rpath here is a little special, so let's go into some
219         // detail. First off, `-rpath` is a linker option on Unix platforms
220         // which adds to the runtime dynamic loader path when looking for
221         // dynamic libraries. We use this by default on Unix platforms to ensure
222         // that our nightlies behave the same on Windows, that is they work out
223         // of the box. This can be disabled, of course, but basically that's why
224         // we're gated on RUSTC_RPATH here.
225         //
226         // Ok, so the astute might be wondering "why isn't `-C rpath` used
227         // here?" and that is indeed a good question to task. This codegen
228         // option is the compiler's current interface to generating an rpath.
229         // Unfortunately it doesn't quite suffice for us. The flag currently
230         // takes no value as an argument, so the compiler calculates what it
231         // should pass to the linker as `-rpath`. This unfortunately is based on
232         // the **compile time** directory structure which when building with
233         // Cargo will be very different than the runtime directory structure.
234         //
235         // All that's a really long winded way of saying that if we use
236         // `-Crpath` then the executables generated have the wrong rpath of
237         // something like `$ORIGIN/deps` when in fact the way we distribute
238         // rustc requires the rpath to be `$ORIGIN/../lib`.
239         //
240         // So, all in all, to set up the correct rpath we pass the linker
241         // argument manually via `-C link-args=-Wl,-rpath,...`. Plus isn't it
242         // fun to pass a flag to a tool to pass a flag to pass a flag to a tool
243         // to change a flag in a binary?
244         if env::var("RUSTC_RPATH") == Ok("true".to_string()) {
245             let rpath = if target.contains("apple") {
246
247                 // Note that we need to take one extra step on macOS to also pass
248                 // `-Wl,-instal_name,@rpath/...` to get things to work right. To
249                 // do that we pass a weird flag to the compiler to get it to do
250                 // so. Note that this is definitely a hack, and we should likely
251                 // flesh out rpath support more fully in the future.
252                 cmd.arg("-Z").arg("osx-rpath-install-name");
253                 Some("-Wl,-rpath,@loader_path/../lib")
254             } else if !target.contains("windows") &&
255                       !target.contains("wasm32") &&
256                       !target.contains("fuchsia") {
257                 Some("-Wl,-rpath,$ORIGIN/../lib")
258             } else {
259                 None
260             };
261             if let Some(rpath) = rpath {
262                 cmd.arg("-C").arg(format!("link-args={}", rpath));
263             }
264         }
265
266         if let Ok(s) = env::var("RUSTC_CRT_STATIC") {
267             if s == "true" {
268                 cmd.arg("-C").arg("target-feature=+crt-static");
269             }
270             if s == "false" {
271                 cmd.arg("-C").arg("target-feature=-crt-static");
272             }
273         }
274
275         // When running miri tests, we need to generate MIR for all libraries
276         if env::var("TEST_MIRI").ok().map_or(false, |val| val == "true") {
277             // The flags here should be kept in sync with `add_miri_default_args`
278             // in miri's `src/lib.rs`.
279             cmd.arg("-Zalways-encode-mir");
280             cmd.arg("--cfg=miri");
281             // These options are preferred by miri, to be able to perform better validation,
282             // but the bootstrap compiler might not understand them.
283             if stage != "0" {
284                 cmd.arg("-Zmir-emit-retag");
285                 cmd.arg("-Zmir-opt-level=0");
286             }
287         }
288
289         if let Ok(map) = env::var("RUSTC_DEBUGINFO_MAP") {
290             cmd.arg("--remap-path-prefix").arg(&map);
291         }
292     } else {
293         // Override linker if necessary.
294         if let Ok(host_linker) = env::var("RUSTC_HOST_LINKER") {
295             cmd.arg(format!("-Clinker={}", host_linker));
296         }
297
298         if let Ok(s) = env::var("RUSTC_HOST_CRT_STATIC") {
299             if s == "true" {
300                 cmd.arg("-C").arg("target-feature=+crt-static");
301             }
302             if s == "false" {
303                 cmd.arg("-C").arg("target-feature=-crt-static");
304             }
305         }
306     }
307
308     // This is required for internal lints.
309     cmd.arg("-Zunstable-options");
310     if let Some(crate_name) = args.windows(2).find(|a| &*a[0] == "--crate-name") {
311         let crate_name = crate_name[1].to_string_lossy();
312         if crate_name.starts_with("rustc")
313             || crate_name.starts_with("syntax")
314             || crate_name == "arena"
315             || crate_name == "fmt_macros"
316         {
317             if stage != "0" {
318                 cmd.arg("-Wrustc::internal");
319             }
320         }
321     }
322
323     // Force all crates compiled by this compiler to (a) be unstable and (b)
324     // allow the `rustc_private` feature to link to other unstable crates
325     // also in the sysroot. We also do this for host crates, since those
326     // may be proc macros, in which case we might ship them.
327     if env::var_os("RUSTC_FORCE_UNSTABLE").is_some() && (stage != "0" || target.is_some()) {
328         cmd.arg("-Z").arg("force-unstable-if-unmarked");
329     }
330
331     if env::var_os("RUSTC_PARALLEL_COMPILER").is_some() {
332         cmd.arg("--cfg").arg("parallel_compiler");
333     }
334
335     if env::var_os("RUSTC_DENY_WARNINGS").is_some() && env::var_os("RUSTC_EXTERNAL_TOOL").is_none()
336     {
337         cmd.arg("-Dwarnings");
338         cmd.arg("-Dbare_trait_objects");
339         cmd.arg("-Drust_2018_idioms");
340     }
341
342     if verbose > 1 {
343         eprintln!(
344             "rustc command: {:?}={:?} {:?}",
345             bootstrap::util::dylib_path_var(),
346             env::join_paths(&dylib_path).unwrap(),
347             cmd,
348         );
349         eprintln!("sysroot: {:?}", sysroot);
350         eprintln!("libdir: {:?}", libdir);
351     }
352
353     if let Some(mut on_fail) = on_fail {
354         let e = match cmd.status() {
355             Ok(s) if s.success() => std::process::exit(0),
356             e => e,
357         };
358         println!("\nDid not run successfully: {:?}\n{:?}\n-------------", e, cmd);
359         exec_cmd(&mut on_fail).expect("could not run the backup command");
360         std::process::exit(1);
361     }
362
363     if env::var_os("RUSTC_PRINT_STEP_TIMINGS").is_some() {
364         if let Some(krate) = maybe_crate {
365             let start = Instant::now();
366             let status = cmd
367                 .status()
368                 .unwrap_or_else(|_| panic!("\n\n failed to run {:?}", cmd));
369             let dur = start.elapsed();
370
371             let is_test = args.iter().any(|a| a == "--test");
372             eprintln!("[RUSTC-TIMING] {} test:{} {}.{:03}",
373                       krate.to_string_lossy(),
374                       is_test,
375                       dur.as_secs(),
376                       dur.subsec_nanos() / 1_000_000);
377
378             match status.code() {
379                 Some(i) => std::process::exit(i),
380                 None => {
381                     eprintln!("rustc exited with {}", status);
382                     std::process::exit(0xfe);
383                 }
384             }
385         }
386     }
387
388     let code = exec_cmd(&mut cmd).unwrap_or_else(|_| panic!("\n\n failed to run {:?}", cmd));
389     std::process::exit(code);
390 }
391
392 #[cfg(unix)]
393 fn exec_cmd(cmd: &mut Command) -> io::Result<i32> {
394     use std::os::unix::process::CommandExt;
395     Err(cmd.exec())
396 }
397
398 #[cfg(not(unix))]
399 fn exec_cmd(cmd: &mut Command) -> io::Result<i32> {
400     cmd.status().map(|status| status.code().unwrap())
401 }