]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/compile.rs
Auto merge of #83776 - jyn514:update-stdarch-docs, r=Amanieu
[rust.git] / src / bootstrap / compile.rs
1 //! Implementation of compiling various phases of the compiler and standard
2 //! library.
3 //!
4 //! This module contains some of the real meat in the rustbuild build system
5 //! which is where Cargo is used to compiler the standard library, libtest, and
6 //! compiler. This module is also responsible for assembling the sysroot as it
7 //! goes along from the output of the previous stage.
8
9 use std::borrow::Cow;
10 use std::collections::HashSet;
11 use std::env;
12 use std::fs;
13 use std::io::prelude::*;
14 use std::io::BufReader;
15 use std::path::{Path, PathBuf};
16 use std::process::{exit, Command, Stdio};
17 use std::str;
18
19 use build_helper::{output, t, up_to_date};
20 use filetime::FileTime;
21 use serde::Deserialize;
22
23 use crate::builder::Cargo;
24 use crate::builder::{Builder, Kind, RunConfig, ShouldRun, Step};
25 use crate::cache::{Interned, INTERNER};
26 use crate::config::TargetSelection;
27 use crate::dist;
28 use crate::native;
29 use crate::tool::SourceType;
30 use crate::util::{exe, is_debug_info, is_dylib, symlink_dir};
31 use crate::{Compiler, DependencyType, GitRepo, Mode};
32
33 #[derive(Debug, PartialOrd, Ord, Copy, Clone, PartialEq, Eq, Hash)]
34 pub struct Std {
35     pub target: TargetSelection,
36     pub compiler: Compiler,
37 }
38
39 impl Step for Std {
40     type Output = ();
41     const DEFAULT: bool = true;
42
43     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
44         // When downloading stage1, the standard library has already been copied to the sysroot, so
45         // there's no need to rebuild it.
46         let download_rustc = run.builder.config.download_rustc;
47         run.all_krates("test").default_condition(!download_rustc)
48     }
49
50     fn make_run(run: RunConfig<'_>) {
51         run.builder.ensure(Std {
52             compiler: run.builder.compiler(run.builder.top_stage, run.build_triple()),
53             target: run.target,
54         });
55     }
56
57     /// Builds the standard library.
58     ///
59     /// This will build the standard library for a particular stage of the build
60     /// using the `compiler` targeting the `target` architecture. The artifacts
61     /// created will also be linked into the sysroot directory.
62     fn run(self, builder: &Builder<'_>) {
63         let target = self.target;
64         let compiler = self.compiler;
65
66         // These artifacts were already copied (in `impl Step for Sysroot`).
67         // Don't recompile them.
68         // NOTE: the ABI of the beta compiler is different from the ABI of the downloaded compiler,
69         // so its artifacts can't be reused.
70         if builder.config.download_rustc && compiler.stage != 0 {
71             return;
72         }
73
74         if builder.config.keep_stage.contains(&compiler.stage)
75             || builder.config.keep_stage_std.contains(&compiler.stage)
76         {
77             builder.info("Warning: Using a potentially old libstd. This may not behave well.");
78             builder.ensure(StdLink { compiler, target_compiler: compiler, target });
79             return;
80         }
81
82         let mut target_deps = builder.ensure(StartupObjects { compiler, target });
83
84         let compiler_to_use = builder.compiler_for(compiler.stage, compiler.host, target);
85         if compiler_to_use != compiler {
86             builder.ensure(Std { compiler: compiler_to_use, target });
87             builder.info(&format!("Uplifting stage1 std ({} -> {})", compiler_to_use.host, target));
88
89             // Even if we're not building std this stage, the new sysroot must
90             // still contain the third party objects needed by various targets.
91             copy_third_party_objects(builder, &compiler, target);
92             copy_self_contained_objects(builder, &compiler, target);
93
94             builder.ensure(StdLink {
95                 compiler: compiler_to_use,
96                 target_compiler: compiler,
97                 target,
98             });
99             return;
100         }
101
102         target_deps.extend(copy_third_party_objects(builder, &compiler, target));
103         target_deps.extend(copy_self_contained_objects(builder, &compiler, target));
104
105         let mut cargo = builder.cargo(compiler, Mode::Std, SourceType::InTree, target, "build");
106         std_cargo(builder, target, compiler.stage, &mut cargo);
107
108         builder.info(&format!(
109             "Building stage{} std artifacts ({} -> {})",
110             compiler.stage, &compiler.host, target
111         ));
112         run_cargo(
113             builder,
114             cargo,
115             vec![],
116             &libstd_stamp(builder, compiler, target),
117             target_deps,
118             false,
119         );
120
121         builder.ensure(StdLink {
122             compiler: builder.compiler(compiler.stage, builder.config.build),
123             target_compiler: compiler,
124             target,
125         });
126     }
127 }
128
129 fn copy_and_stamp(
130     builder: &Builder<'_>,
131     libdir: &Path,
132     sourcedir: &Path,
133     name: &str,
134     target_deps: &mut Vec<(PathBuf, DependencyType)>,
135     dependency_type: DependencyType,
136 ) {
137     let target = libdir.join(name);
138     builder.copy(&sourcedir.join(name), &target);
139
140     target_deps.push((target, dependency_type));
141 }
142
143 /// Copies third party objects needed by various targets.
144 fn copy_third_party_objects(
145     builder: &Builder<'_>,
146     compiler: &Compiler,
147     target: TargetSelection,
148 ) -> Vec<(PathBuf, DependencyType)> {
149     let mut target_deps = vec![];
150
151     // FIXME: remove this in 2021
152     if target == "x86_64-fortanix-unknown-sgx" {
153         if env::var_os("X86_FORTANIX_SGX_LIBS").is_some() {
154             builder.info("Warning: X86_FORTANIX_SGX_LIBS environment variable is ignored, libunwind is now compiled as part of rustbuild");
155         }
156     }
157
158     if builder.config.sanitizers_enabled(target) && compiler.stage != 0 {
159         // The sanitizers are only copied in stage1 or above,
160         // to avoid creating dependency on LLVM.
161         target_deps.extend(
162             copy_sanitizers(builder, &compiler, target)
163                 .into_iter()
164                 .map(|d| (d, DependencyType::Target)),
165         );
166     }
167
168     target_deps
169 }
170
171 /// Copies third party objects needed by various targets for self-contained linkage.
172 fn copy_self_contained_objects(
173     builder: &Builder<'_>,
174     compiler: &Compiler,
175     target: TargetSelection,
176 ) -> Vec<(PathBuf, DependencyType)> {
177     let libdir_self_contained = builder.sysroot_libdir(*compiler, target).join("self-contained");
178     t!(fs::create_dir_all(&libdir_self_contained));
179     let mut target_deps = vec![];
180
181     // Copies the CRT objects.
182     //
183     // rustc historically provides a more self-contained installation for musl targets
184     // not requiring the presence of a native musl toolchain. For example, it can fall back
185     // to using gcc from a glibc-targeting toolchain for linking.
186     // To do that we have to distribute musl startup objects as a part of Rust toolchain
187     // and link with them manually in the self-contained mode.
188     if target.contains("musl") {
189         let srcdir = builder.musl_libdir(target).unwrap_or_else(|| {
190             panic!("Target {:?} does not have a \"musl-libdir\" key", target.triple)
191         });
192         for &obj in &["crt1.o", "Scrt1.o", "rcrt1.o", "crti.o", "crtn.o"] {
193             copy_and_stamp(
194                 builder,
195                 &libdir_self_contained,
196                 &srcdir,
197                 obj,
198                 &mut target_deps,
199                 DependencyType::TargetSelfContained,
200             );
201         }
202         for &obj in &["crtbegin.o", "crtbeginS.o", "crtend.o", "crtendS.o"] {
203             let src = compiler_file(builder, builder.cc(target), target, obj);
204             let target = libdir_self_contained.join(obj);
205             builder.copy(&src, &target);
206             target_deps.push((target, DependencyType::TargetSelfContained));
207         }
208     } else if target.ends_with("-wasi") {
209         let srcdir = builder
210             .wasi_root(target)
211             .unwrap_or_else(|| {
212                 panic!("Target {:?} does not have a \"wasi-root\" key", target.triple)
213             })
214             .join("lib/wasm32-wasi");
215         for &obj in &["crt1-command.o", "crt1-reactor.o"] {
216             copy_and_stamp(
217                 builder,
218                 &libdir_self_contained,
219                 &srcdir,
220                 obj,
221                 &mut target_deps,
222                 DependencyType::TargetSelfContained,
223             );
224         }
225     } else if target.contains("windows-gnu") {
226         for obj in ["crt2.o", "dllcrt2.o"].iter() {
227             let src = compiler_file(builder, builder.cc(target), target, obj);
228             let target = libdir_self_contained.join(obj);
229             builder.copy(&src, &target);
230             target_deps.push((target, DependencyType::TargetSelfContained));
231         }
232     }
233
234     target_deps
235 }
236
237 /// Configure cargo to compile the standard library, adding appropriate env vars
238 /// and such.
239 pub fn std_cargo(builder: &Builder<'_>, target: TargetSelection, stage: u32, cargo: &mut Cargo) {
240     if let Some(target) = env::var_os("MACOSX_STD_DEPLOYMENT_TARGET") {
241         cargo.env("MACOSX_DEPLOYMENT_TARGET", target);
242     }
243
244     // Determine if we're going to compile in optimized C intrinsics to
245     // the `compiler-builtins` crate. These intrinsics live in LLVM's
246     // `compiler-rt` repository, but our `src/llvm-project` submodule isn't
247     // always checked out, so we need to conditionally look for this. (e.g. if
248     // an external LLVM is used we skip the LLVM submodule checkout).
249     //
250     // Note that this shouldn't affect the correctness of `compiler-builtins`,
251     // but only its speed. Some intrinsics in C haven't been translated to Rust
252     // yet but that's pretty rare. Other intrinsics have optimized
253     // implementations in C which have only had slower versions ported to Rust,
254     // so we favor the C version where we can, but it's not critical.
255     //
256     // If `compiler-rt` is available ensure that the `c` feature of the
257     // `compiler-builtins` crate is enabled and it's configured to learn where
258     // `compiler-rt` is located.
259     let compiler_builtins_root = builder.src.join("src/llvm-project/compiler-rt");
260     let compiler_builtins_c_feature = if compiler_builtins_root.exists() {
261         // Note that `libprofiler_builtins/build.rs` also computes this so if
262         // you're changing something here please also change that.
263         cargo.env("RUST_COMPILER_RT_ROOT", &compiler_builtins_root);
264         " compiler-builtins-c"
265     } else {
266         ""
267     };
268
269     if builder.no_std(target) == Some(true) {
270         let mut features = "compiler-builtins-mem".to_string();
271         features.push_str(compiler_builtins_c_feature);
272
273         // for no-std targets we only compile a few no_std crates
274         cargo
275             .args(&["-p", "alloc"])
276             .arg("--manifest-path")
277             .arg(builder.src.join("library/alloc/Cargo.toml"))
278             .arg("--features")
279             .arg(features);
280     } else {
281         let mut features = builder.std_features(target);
282         features.push_str(compiler_builtins_c_feature);
283
284         cargo
285             .arg("--features")
286             .arg(features)
287             .arg("--manifest-path")
288             .arg(builder.src.join("library/test/Cargo.toml"));
289
290         // Help the libc crate compile by assisting it in finding various
291         // sysroot native libraries.
292         if target.contains("musl") {
293             if let Some(p) = builder.musl_libdir(target) {
294                 let root = format!("native={}", p.to_str().unwrap());
295                 cargo.rustflag("-L").rustflag(&root);
296             }
297         }
298
299         if target.ends_with("-wasi") {
300             if let Some(p) = builder.wasi_root(target) {
301                 let root = format!("native={}/lib/wasm32-wasi", p.to_str().unwrap());
302                 cargo.rustflag("-L").rustflag(&root);
303             }
304         }
305     }
306
307     // By default, rustc uses `-Cembed-bitcode=yes`, and Cargo overrides that
308     // with `-Cembed-bitcode=no` for non-LTO builds. However, libstd must be
309     // built with bitcode so that the produced rlibs can be used for both LTO
310     // builds (which use bitcode) and non-LTO builds (which use object code).
311     // So we override the override here!
312     //
313     // But we don't bother for the stage 0 compiler because it's never used
314     // with LTO.
315     if stage >= 1 {
316         cargo.rustflag("-Cembed-bitcode=yes");
317     }
318
319     // By default, rustc does not include unwind tables unless they are required
320     // for a particular target. They are not required by RISC-V targets, but
321     // compiling the standard library with them means that users can get
322     // backtraces without having to recompile the standard library themselves.
323     //
324     // This choice was discussed in https://github.com/rust-lang/rust/pull/69890
325     if target.contains("riscv") {
326         cargo.rustflag("-Cforce-unwind-tables=yes");
327     }
328 }
329
330 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
331 struct StdLink {
332     pub compiler: Compiler,
333     pub target_compiler: Compiler,
334     pub target: TargetSelection,
335 }
336
337 impl Step for StdLink {
338     type Output = ();
339
340     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
341         run.never()
342     }
343
344     /// Link all libstd rlibs/dylibs into the sysroot location.
345     ///
346     /// Links those artifacts generated by `compiler` to the `stage` compiler's
347     /// sysroot for the specified `host` and `target`.
348     ///
349     /// Note that this assumes that `compiler` has already generated the libstd
350     /// libraries for `target`, and this method will find them in the relevant
351     /// output directory.
352     fn run(self, builder: &Builder<'_>) {
353         let compiler = self.compiler;
354         let target_compiler = self.target_compiler;
355         let target = self.target;
356         builder.info(&format!(
357             "Copying stage{} std from stage{} ({} -> {} / {})",
358             target_compiler.stage, compiler.stage, &compiler.host, target_compiler.host, target
359         ));
360         let libdir = builder.sysroot_libdir(target_compiler, target);
361         let hostdir = builder.sysroot_libdir(target_compiler, compiler.host);
362         add_to_sysroot(builder, &libdir, &hostdir, &libstd_stamp(builder, compiler, target));
363     }
364 }
365
366 /// Copies sanitizer runtime libraries into target libdir.
367 fn copy_sanitizers(
368     builder: &Builder<'_>,
369     compiler: &Compiler,
370     target: TargetSelection,
371 ) -> Vec<PathBuf> {
372     let runtimes: Vec<native::SanitizerRuntime> = builder.ensure(native::Sanitizers { target });
373
374     if builder.config.dry_run {
375         return Vec::new();
376     }
377
378     let mut target_deps = Vec::new();
379     let libdir = builder.sysroot_libdir(*compiler, target);
380
381     for runtime in &runtimes {
382         let dst = libdir.join(&runtime.name);
383         builder.copy(&runtime.path, &dst);
384
385         if target == "x86_64-apple-darwin" || target == "aarch64-apple-darwin" {
386             // Update the library’s install name to reflect that it has has been renamed.
387             apple_darwin_update_library_name(&dst, &format!("@rpath/{}", &runtime.name));
388             // Upon renaming the install name, the code signature of the file will invalidate,
389             // so we will sign it again.
390             apple_darwin_sign_file(&dst);
391         }
392
393         target_deps.push(dst);
394     }
395
396     target_deps
397 }
398
399 fn apple_darwin_update_library_name(library_path: &Path, new_name: &str) {
400     let status = Command::new("install_name_tool")
401         .arg("-id")
402         .arg(new_name)
403         .arg(library_path)
404         .status()
405         .expect("failed to execute `install_name_tool`");
406     assert!(status.success());
407 }
408
409 fn apple_darwin_sign_file(file_path: &Path) {
410     let status = Command::new("codesign")
411         .arg("-f") // Force to rewrite the existing signature
412         .arg("-s")
413         .arg("-")
414         .arg(file_path)
415         .status()
416         .expect("failed to execute `codesign`");
417     assert!(status.success());
418 }
419
420 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
421 pub struct StartupObjects {
422     pub compiler: Compiler,
423     pub target: TargetSelection,
424 }
425
426 impl Step for StartupObjects {
427     type Output = Vec<(PathBuf, DependencyType)>;
428
429     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
430         run.path("library/rtstartup")
431     }
432
433     fn make_run(run: RunConfig<'_>) {
434         run.builder.ensure(StartupObjects {
435             compiler: run.builder.compiler(run.builder.top_stage, run.build_triple()),
436             target: run.target,
437         });
438     }
439
440     /// Builds and prepare startup objects like rsbegin.o and rsend.o
441     ///
442     /// These are primarily used on Windows right now for linking executables/dlls.
443     /// They don't require any library support as they're just plain old object
444     /// files, so we just use the nightly snapshot compiler to always build them (as
445     /// no other compilers are guaranteed to be available).
446     fn run(self, builder: &Builder<'_>) -> Vec<(PathBuf, DependencyType)> {
447         let for_compiler = self.compiler;
448         let target = self.target;
449         if !target.contains("windows-gnu") {
450             return vec![];
451         }
452
453         let mut target_deps = vec![];
454
455         let src_dir = &builder.src.join("library").join("rtstartup");
456         let dst_dir = &builder.native_dir(target).join("rtstartup");
457         let sysroot_dir = &builder.sysroot_libdir(for_compiler, target);
458         t!(fs::create_dir_all(dst_dir));
459
460         for file in &["rsbegin", "rsend"] {
461             let src_file = &src_dir.join(file.to_string() + ".rs");
462             let dst_file = &dst_dir.join(file.to_string() + ".o");
463             if !up_to_date(src_file, dst_file) {
464                 let mut cmd = Command::new(&builder.initial_rustc);
465                 cmd.env("RUSTC_BOOTSTRAP", "1");
466                 if !builder.local_rebuild {
467                     // a local_rebuild compiler already has stage1 features
468                     cmd.arg("--cfg").arg("bootstrap");
469                 }
470                 builder.run(
471                     cmd.arg("--target")
472                         .arg(target.rustc_target_arg())
473                         .arg("--emit=obj")
474                         .arg("-o")
475                         .arg(dst_file)
476                         .arg(src_file),
477                 );
478             }
479
480             let target = sysroot_dir.join((*file).to_string() + ".o");
481             builder.copy(dst_file, &target);
482             target_deps.push((target, DependencyType::Target));
483         }
484
485         target_deps
486     }
487 }
488
489 #[derive(Debug, PartialOrd, Ord, Copy, Clone, PartialEq, Eq, Hash)]
490 pub struct Rustc {
491     pub target: TargetSelection,
492     pub compiler: Compiler,
493 }
494
495 impl Step for Rustc {
496     type Output = ();
497     const ONLY_HOSTS: bool = true;
498     const DEFAULT: bool = false;
499
500     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
501         run.path("compiler/rustc")
502     }
503
504     fn make_run(run: RunConfig<'_>) {
505         run.builder.ensure(Rustc {
506             compiler: run.builder.compiler(run.builder.top_stage, run.build_triple()),
507             target: run.target,
508         });
509     }
510
511     /// Builds the compiler.
512     ///
513     /// This will build the compiler for a particular stage of the build using
514     /// the `compiler` targeting the `target` architecture. The artifacts
515     /// created will also be linked into the sysroot directory.
516     fn run(self, builder: &Builder<'_>) {
517         let compiler = self.compiler;
518         let target = self.target;
519
520         // NOTE: the ABI of the beta compiler is different from the ABI of the downloaded compiler,
521         // so its artifacts can't be reused.
522         if builder.config.download_rustc && compiler.stage != 0 {
523             // Copy the existing artifacts instead of rebuilding them.
524             // NOTE: this path is only taken for tools linking to rustc-dev.
525             builder.ensure(Sysroot { compiler });
526             return;
527         }
528
529         builder.ensure(Std { compiler, target });
530
531         if builder.config.keep_stage.contains(&compiler.stage) {
532             builder.info("Warning: Using a potentially old librustc. This may not behave well.");
533             builder.info("Warning: Use `--keep-stage-std` if you want to rebuild the compiler when it changes");
534             builder.ensure(RustcLink { compiler, target_compiler: compiler, target });
535             return;
536         }
537
538         let compiler_to_use = builder.compiler_for(compiler.stage, compiler.host, target);
539         if compiler_to_use != compiler {
540             builder.ensure(Rustc { compiler: compiler_to_use, target });
541             builder
542                 .info(&format!("Uplifting stage1 rustc ({} -> {})", builder.config.build, target));
543             builder.ensure(RustcLink {
544                 compiler: compiler_to_use,
545                 target_compiler: compiler,
546                 target,
547             });
548             return;
549         }
550
551         // Ensure that build scripts and proc macros have a std / libproc_macro to link against.
552         builder.ensure(Std {
553             compiler: builder.compiler(self.compiler.stage, builder.config.build),
554             target: builder.config.build,
555         });
556
557         let mut cargo = builder.cargo(compiler, Mode::Rustc, SourceType::InTree, target, "build");
558         rustc_cargo(builder, &mut cargo, target);
559
560         if builder.config.rust_profile_use.is_some()
561             && builder.config.rust_profile_generate.is_some()
562         {
563             panic!("Cannot use and generate PGO profiles at the same time");
564         }
565
566         let is_collecting = if let Some(path) = &builder.config.rust_profile_generate {
567             if compiler.stage == 1 {
568                 cargo.rustflag(&format!("-Cprofile-generate={}", path));
569                 // Apparently necessary to avoid overflowing the counters during
570                 // a Cargo build profile
571                 cargo.rustflag("-Cllvm-args=-vp-counters-per-site=4");
572                 true
573             } else {
574                 false
575             }
576         } else if let Some(path) = &builder.config.rust_profile_use {
577             if compiler.stage == 1 {
578                 cargo.rustflag(&format!("-Cprofile-use={}", path));
579                 cargo.rustflag("-Cllvm-args=-pgo-warn-missing-function");
580                 true
581             } else {
582                 false
583             }
584         } else {
585             false
586         };
587         if is_collecting {
588             // Ensure paths to Rust sources are relative, not absolute.
589             cargo.rustflag(&format!(
590                 "-Cllvm-args=-static-func-strip-dirname-prefix={}",
591                 builder.config.src.components().count()
592             ));
593         }
594
595         builder.info(&format!(
596             "Building stage{} compiler artifacts ({} -> {})",
597             compiler.stage, &compiler.host, target
598         ));
599         run_cargo(
600             builder,
601             cargo,
602             vec![],
603             &librustc_stamp(builder, compiler, target),
604             vec![],
605             false,
606         );
607
608         builder.ensure(RustcLink {
609             compiler: builder.compiler(compiler.stage, builder.config.build),
610             target_compiler: compiler,
611             target,
612         });
613     }
614 }
615
616 pub fn rustc_cargo(builder: &Builder<'_>, cargo: &mut Cargo, target: TargetSelection) {
617     cargo
618         .arg("--features")
619         .arg(builder.rustc_features())
620         .arg("--manifest-path")
621         .arg(builder.src.join("compiler/rustc/Cargo.toml"));
622     rustc_cargo_env(builder, cargo, target);
623 }
624
625 pub fn rustc_cargo_env(builder: &Builder<'_>, cargo: &mut Cargo, target: TargetSelection) {
626     // Set some configuration variables picked up by build scripts and
627     // the compiler alike
628     cargo
629         .env("CFG_RELEASE", builder.rust_release())
630         .env("CFG_RELEASE_CHANNEL", &builder.config.channel)
631         .env("CFG_VERSION", builder.rust_version())
632         .env("CFG_PREFIX", builder.config.prefix.clone().unwrap_or_default());
633
634     let libdir_relative = builder.config.libdir_relative().unwrap_or_else(|| Path::new("lib"));
635     cargo.env("CFG_LIBDIR_RELATIVE", libdir_relative);
636
637     if let Some(ref ver_date) = builder.rust_info.commit_date() {
638         cargo.env("CFG_VER_DATE", ver_date);
639     }
640     if let Some(ref ver_hash) = builder.rust_info.sha() {
641         cargo.env("CFG_VER_HASH", ver_hash);
642     }
643     if !builder.unstable_features() {
644         cargo.env("CFG_DISABLE_UNSTABLE_FEATURES", "1");
645     }
646     if let Some(ref s) = builder.config.rustc_default_linker {
647         cargo.env("CFG_DEFAULT_LINKER", s);
648     }
649     if builder.config.rustc_parallel {
650         cargo.rustflag("--cfg=parallel_compiler");
651     }
652     if builder.config.rust_verify_llvm_ir {
653         cargo.env("RUSTC_VERIFY_LLVM_IR", "1");
654     }
655
656     // Pass down configuration from the LLVM build into the build of
657     // rustc_llvm and rustc_codegen_llvm.
658     //
659     // Note that this is disabled if LLVM itself is disabled or we're in a check
660     // build. If we are in a check build we still go ahead here presuming we've
661     // detected that LLVM is alreay built and good to go which helps prevent
662     // busting caches (e.g. like #71152).
663     if builder.config.llvm_enabled()
664         && (builder.kind != Kind::Check
665             || crate::native::prebuilt_llvm_config(builder, target).is_ok())
666     {
667         if builder.is_rust_llvm(target) {
668             cargo.env("LLVM_RUSTLLVM", "1");
669         }
670         let llvm_config = builder.ensure(native::Llvm { target });
671         cargo.env("LLVM_CONFIG", &llvm_config);
672         let target_config = builder.config.target_config.get(&target);
673         if let Some(s) = target_config.and_then(|c| c.llvm_config.as_ref()) {
674             cargo.env("CFG_LLVM_ROOT", s);
675         }
676         // Some LLVM linker flags (-L and -l) may be needed to link rustc_llvm.
677         if let Some(ref s) = builder.config.llvm_ldflags {
678             cargo.env("LLVM_LINKER_FLAGS", s);
679         }
680         // Building with a static libstdc++ is only supported on linux right now,
681         // not for MSVC or macOS
682         if builder.config.llvm_static_stdcpp
683             && !target.contains("freebsd")
684             && !target.contains("msvc")
685             && !target.contains("apple")
686         {
687             let file = compiler_file(builder, builder.cxx(target).unwrap(), target, "libstdc++.a");
688             cargo.env("LLVM_STATIC_STDCPP", file);
689         }
690         if builder.config.llvm_link_shared {
691             cargo.env("LLVM_LINK_SHARED", "1");
692         }
693         if builder.config.llvm_use_libcxx {
694             cargo.env("LLVM_USE_LIBCXX", "1");
695         }
696         if builder.config.llvm_optimize && !builder.config.llvm_release_debuginfo {
697             cargo.env("LLVM_NDEBUG", "1");
698         }
699     }
700 }
701
702 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
703 struct RustcLink {
704     pub compiler: Compiler,
705     pub target_compiler: Compiler,
706     pub target: TargetSelection,
707 }
708
709 impl Step for RustcLink {
710     type Output = ();
711
712     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
713         run.never()
714     }
715
716     /// Same as `std_link`, only for librustc
717     fn run(self, builder: &Builder<'_>) {
718         let compiler = self.compiler;
719         let target_compiler = self.target_compiler;
720         let target = self.target;
721         builder.info(&format!(
722             "Copying stage{} rustc from stage{} ({} -> {} / {})",
723             target_compiler.stage, compiler.stage, &compiler.host, target_compiler.host, target
724         ));
725         add_to_sysroot(
726             builder,
727             &builder.sysroot_libdir(target_compiler, target),
728             &builder.sysroot_libdir(target_compiler, compiler.host),
729             &librustc_stamp(builder, compiler, target),
730         );
731     }
732 }
733
734 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
735 pub struct CodegenBackend {
736     pub target: TargetSelection,
737     pub compiler: Compiler,
738     pub backend: Interned<String>,
739 }
740
741 impl Step for CodegenBackend {
742     type Output = ();
743     const ONLY_HOSTS: bool = true;
744     // Only the backends specified in the `codegen-backends` entry of `config.toml` are built.
745     const DEFAULT: bool = true;
746
747     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
748         run.path("compiler/rustc_codegen_cranelift")
749     }
750
751     fn make_run(run: RunConfig<'_>) {
752         for &backend in &run.builder.config.rust_codegen_backends {
753             if backend == "llvm" {
754                 continue; // Already built as part of rustc
755             }
756
757             run.builder.ensure(CodegenBackend {
758                 target: run.target,
759                 compiler: run.builder.compiler(run.builder.top_stage, run.build_triple()),
760                 backend,
761             });
762         }
763     }
764
765     fn run(self, builder: &Builder<'_>) {
766         let compiler = self.compiler;
767         let target = self.target;
768         let backend = self.backend;
769
770         builder.ensure(Rustc { compiler, target });
771
772         if builder.config.keep_stage.contains(&compiler.stage) {
773             builder.info(
774                 "Warning: Using a potentially old codegen backend. \
775                 This may not behave well.",
776             );
777             // Codegen backends are linked separately from this step today, so we don't do
778             // anything here.
779             return;
780         }
781
782         let compiler_to_use = builder.compiler_for(compiler.stage, compiler.host, target);
783         if compiler_to_use != compiler {
784             builder.ensure(CodegenBackend { compiler: compiler_to_use, target, backend });
785             return;
786         }
787
788         let out_dir = builder.cargo_out(compiler, Mode::Codegen, target);
789
790         let mut cargo =
791             builder.cargo(compiler, Mode::Codegen, SourceType::Submodule, target, "build");
792         cargo
793             .arg("--manifest-path")
794             .arg(builder.src.join(format!("compiler/rustc_codegen_{}/Cargo.toml", backend)));
795         rustc_cargo_env(builder, &mut cargo, target);
796
797         let tmp_stamp = out_dir.join(".tmp.stamp");
798
799         let files = run_cargo(builder, cargo, vec![], &tmp_stamp, vec![], false);
800         if builder.config.dry_run {
801             return;
802         }
803         let mut files = files.into_iter().filter(|f| {
804             let filename = f.file_name().unwrap().to_str().unwrap();
805             is_dylib(filename) && filename.contains("rustc_codegen_")
806         });
807         let codegen_backend = match files.next() {
808             Some(f) => f,
809             None => panic!("no dylibs built for codegen backend?"),
810         };
811         if let Some(f) = files.next() {
812             panic!(
813                 "codegen backend built two dylibs:\n{}\n{}",
814                 codegen_backend.display(),
815                 f.display()
816             );
817         }
818         let stamp = codegen_backend_stamp(builder, compiler, target, backend);
819         let codegen_backend = codegen_backend.to_str().unwrap();
820         t!(fs::write(&stamp, &codegen_backend));
821     }
822 }
823
824 /// Creates the `codegen-backends` folder for a compiler that's about to be
825 /// assembled as a complete compiler.
826 ///
827 /// This will take the codegen artifacts produced by `compiler` and link them
828 /// into an appropriate location for `target_compiler` to be a functional
829 /// compiler.
830 fn copy_codegen_backends_to_sysroot(
831     builder: &Builder<'_>,
832     compiler: Compiler,
833     target_compiler: Compiler,
834 ) {
835     let target = target_compiler.host;
836
837     // Note that this step is different than all the other `*Link` steps in
838     // that it's not assembling a bunch of libraries but rather is primarily
839     // moving the codegen backend into place. The codegen backend of rustc is
840     // not linked into the main compiler by default but is rather dynamically
841     // selected at runtime for inclusion.
842     //
843     // Here we're looking for the output dylib of the `CodegenBackend` step and
844     // we're copying that into the `codegen-backends` folder.
845     let dst = builder.sysroot_codegen_backends(target_compiler);
846     t!(fs::create_dir_all(&dst), dst);
847
848     if builder.config.dry_run {
849         return;
850     }
851
852     for backend in builder.config.rust_codegen_backends.iter() {
853         if backend == "llvm" {
854             continue; // Already built as part of rustc
855         }
856
857         let stamp = codegen_backend_stamp(builder, compiler, target, *backend);
858         let dylib = t!(fs::read_to_string(&stamp));
859         let file = Path::new(&dylib);
860         let filename = file.file_name().unwrap().to_str().unwrap();
861         // change `librustc_codegen_cranelift-xxxxxx.so` to
862         // `librustc_codegen_cranelift-release.so`
863         let target_filename = {
864             let dash = filename.find('-').unwrap();
865             let dot = filename.find('.').unwrap();
866             format!("{}-{}{}", &filename[..dash], builder.rust_release(), &filename[dot..])
867         };
868         builder.copy(&file, &dst.join(target_filename));
869     }
870 }
871
872 /// Cargo's output path for the standard library in a given stage, compiled
873 /// by a particular compiler for the specified target.
874 pub fn libstd_stamp(builder: &Builder<'_>, compiler: Compiler, target: TargetSelection) -> PathBuf {
875     builder.cargo_out(compiler, Mode::Std, target).join(".libstd.stamp")
876 }
877
878 /// Cargo's output path for librustc in a given stage, compiled by a particular
879 /// compiler for the specified target.
880 pub fn librustc_stamp(
881     builder: &Builder<'_>,
882     compiler: Compiler,
883     target: TargetSelection,
884 ) -> PathBuf {
885     builder.cargo_out(compiler, Mode::Rustc, target).join(".librustc.stamp")
886 }
887
888 /// Cargo's output path for librustc_codegen_llvm in a given stage, compiled by a particular
889 /// compiler for the specified target and backend.
890 fn codegen_backend_stamp(
891     builder: &Builder<'_>,
892     compiler: Compiler,
893     target: TargetSelection,
894     backend: Interned<String>,
895 ) -> PathBuf {
896     builder
897         .cargo_out(compiler, Mode::Codegen, target)
898         .join(format!(".librustc_codegen_{}.stamp", backend))
899 }
900
901 pub fn compiler_file(
902     builder: &Builder<'_>,
903     compiler: &Path,
904     target: TargetSelection,
905     file: &str,
906 ) -> PathBuf {
907     let mut cmd = Command::new(compiler);
908     cmd.args(builder.cflags(target, GitRepo::Rustc));
909     cmd.arg(format!("-print-file-name={}", file));
910     let out = output(&mut cmd);
911     PathBuf::from(out.trim())
912 }
913
914 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
915 pub struct Sysroot {
916     pub compiler: Compiler,
917 }
918
919 impl Step for Sysroot {
920     type Output = Interned<PathBuf>;
921
922     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
923         run.never()
924     }
925
926     /// Returns the sysroot for the `compiler` specified that *this build system
927     /// generates*.
928     ///
929     /// That is, the sysroot for the stage0 compiler is not what the compiler
930     /// thinks it is by default, but it's the same as the default for stages
931     /// 1-3.
932     fn run(self, builder: &Builder<'_>) -> Interned<PathBuf> {
933         let compiler = self.compiler;
934         let sysroot = if compiler.stage == 0 {
935             builder.out.join(&compiler.host.triple).join("stage0-sysroot")
936         } else {
937             builder.out.join(&compiler.host.triple).join(format!("stage{}", compiler.stage))
938         };
939         let _ = fs::remove_dir_all(&sysroot);
940         t!(fs::create_dir_all(&sysroot));
941
942         // If we're downloading a compiler from CI, we can use the same compiler for all stages other than 0.
943         if builder.config.download_rustc && compiler.stage != 0 {
944             assert_eq!(
945                 builder.config.build, compiler.host,
946                 "Cross-compiling is not yet supported with `download-rustc`",
947             );
948             // Copy the compiler into the correct sysroot.
949             let ci_rustc_dir =
950                 builder.config.out.join(&*builder.config.build.triple).join("ci-rustc");
951             builder.cp_r(&ci_rustc_dir, &sysroot);
952             return INTERNER.intern_path(sysroot);
953         }
954
955         // Symlink the source root into the same location inside the sysroot,
956         // where `rust-src` component would go (`$sysroot/lib/rustlib/src/rust`),
957         // so that any tools relying on `rust-src` also work for local builds,
958         // and also for translating the virtual `/rustc/$hash` back to the real
959         // directory (for running tests with `rust.remap-debuginfo = true`).
960         let sysroot_lib_rustlib_src = sysroot.join("lib/rustlib/src");
961         t!(fs::create_dir_all(&sysroot_lib_rustlib_src));
962         let sysroot_lib_rustlib_src_rust = sysroot_lib_rustlib_src.join("rust");
963         if let Err(e) = symlink_dir(&builder.config, &builder.src, &sysroot_lib_rustlib_src_rust) {
964             eprintln!(
965                 "warning: creating symbolic link `{}` to `{}` failed with {}",
966                 sysroot_lib_rustlib_src_rust.display(),
967                 builder.src.display(),
968                 e,
969             );
970             if builder.config.rust_remap_debuginfo {
971                 eprintln!(
972                     "warning: some `src/test/ui` tests will fail when lacking `{}`",
973                     sysroot_lib_rustlib_src_rust.display(),
974                 );
975             }
976         }
977
978         INTERNER.intern_path(sysroot)
979     }
980 }
981
982 #[derive(Debug, Copy, PartialOrd, Ord, Clone, PartialEq, Eq, Hash)]
983 pub struct Assemble {
984     /// The compiler which we will produce in this step. Assemble itself will
985     /// take care of ensuring that the necessary prerequisites to do so exist,
986     /// that is, this target can be a stage2 compiler and Assemble will build
987     /// previous stages for you.
988     pub target_compiler: Compiler,
989 }
990
991 impl Step for Assemble {
992     type Output = Compiler;
993
994     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
995         run.never()
996     }
997
998     /// Prepare a new compiler from the artifacts in `stage`
999     ///
1000     /// This will assemble a compiler in `build/$host/stage$stage`. The compiler
1001     /// must have been previously produced by the `stage - 1` builder.build
1002     /// compiler.
1003     fn run(self, builder: &Builder<'_>) -> Compiler {
1004         let target_compiler = self.target_compiler;
1005
1006         if target_compiler.stage == 0 {
1007             assert_eq!(
1008                 builder.config.build, target_compiler.host,
1009                 "Cannot obtain compiler for non-native build triple at stage 0"
1010             );
1011             // The stage 0 compiler for the build triple is always pre-built.
1012             return target_compiler;
1013         }
1014
1015         // Get the compiler that we'll use to bootstrap ourselves.
1016         //
1017         // Note that this is where the recursive nature of the bootstrap
1018         // happens, as this will request the previous stage's compiler on
1019         // downwards to stage 0.
1020         //
1021         // Also note that we're building a compiler for the host platform. We
1022         // only assume that we can run `build` artifacts, which means that to
1023         // produce some other architecture compiler we need to start from
1024         // `build` to get there.
1025         //
1026         // FIXME: It may be faster if we build just a stage 1 compiler and then
1027         //        use that to bootstrap this compiler forward.
1028         let build_compiler = builder.compiler(target_compiler.stage - 1, builder.config.build);
1029
1030         // If we're downloading a compiler from CI, we can use the same compiler for all stages other than 0.
1031         if builder.config.download_rustc {
1032             builder.ensure(Sysroot { compiler: target_compiler });
1033             return target_compiler;
1034         }
1035
1036         // Build the libraries for this compiler to link to (i.e., the libraries
1037         // it uses at runtime). NOTE: Crates the target compiler compiles don't
1038         // link to these. (FIXME: Is that correct? It seems to be correct most
1039         // of the time but I think we do link to these for stage2/bin compilers
1040         // when not performing a full bootstrap).
1041         builder.ensure(Rustc { compiler: build_compiler, target: target_compiler.host });
1042
1043         for &backend in builder.config.rust_codegen_backends.iter() {
1044             if backend == "llvm" {
1045                 continue; // Already built as part of rustc
1046             }
1047
1048             builder.ensure(CodegenBackend {
1049                 compiler: build_compiler,
1050                 target: target_compiler.host,
1051                 backend,
1052             });
1053         }
1054
1055         let lld_install = if builder.config.lld_enabled {
1056             Some(builder.ensure(native::Lld { target: target_compiler.host }))
1057         } else {
1058             None
1059         };
1060
1061         let stage = target_compiler.stage;
1062         let host = target_compiler.host;
1063         builder.info(&format!("Assembling stage{} compiler ({})", stage, host));
1064
1065         // Link in all dylibs to the libdir
1066         let stamp = librustc_stamp(builder, build_compiler, target_compiler.host);
1067         let proc_macros = builder
1068             .read_stamp_file(&stamp)
1069             .into_iter()
1070             .filter_map(|(path, dependency_type)| {
1071                 if dependency_type == DependencyType::Host {
1072                     Some(path.file_name().unwrap().to_owned().into_string().unwrap())
1073                 } else {
1074                     None
1075                 }
1076             })
1077             .collect::<HashSet<_>>();
1078
1079         let sysroot = builder.sysroot(target_compiler);
1080         let rustc_libdir = builder.rustc_libdir(target_compiler);
1081         t!(fs::create_dir_all(&rustc_libdir));
1082         let src_libdir = builder.sysroot_libdir(build_compiler, host);
1083         for f in builder.read_dir(&src_libdir) {
1084             let filename = f.file_name().into_string().unwrap();
1085             if (is_dylib(&filename) || is_debug_info(&filename)) && !proc_macros.contains(&filename)
1086             {
1087                 builder.copy(&f.path(), &rustc_libdir.join(&filename));
1088             }
1089         }
1090
1091         copy_codegen_backends_to_sysroot(builder, build_compiler, target_compiler);
1092
1093         // We prepend this bin directory to the user PATH when linking Rust binaries. To
1094         // avoid shadowing the system LLD we rename the LLD we provide to `rust-lld`.
1095         let libdir = builder.sysroot_libdir(target_compiler, target_compiler.host);
1096         let libdir_bin = libdir.parent().unwrap().join("bin");
1097         t!(fs::create_dir_all(&libdir_bin));
1098
1099         if let Some(lld_install) = lld_install {
1100             let src_exe = exe("lld", target_compiler.host);
1101             let dst_exe = exe("rust-lld", target_compiler.host);
1102             builder.copy(&lld_install.join("bin").join(&src_exe), &libdir_bin.join(&dst_exe));
1103         }
1104
1105         // Similarly, copy `llvm-dwp` into libdir for Split DWARF. Only copy it when the LLVM
1106         // backend is used to avoid unnecessarily building LLVM and because LLVM is not checked
1107         // out by default when the LLVM backend is not enabled.
1108         if builder.config.rust_codegen_backends.contains(&INTERNER.intern_str("llvm")) {
1109             let src_exe = exe("llvm-dwp", target_compiler.host);
1110             let dst_exe = exe("rust-llvm-dwp", target_compiler.host);
1111             let llvm_config_bin = builder.ensure(native::Llvm { target: target_compiler.host });
1112             if !builder.config.dry_run {
1113                 let llvm_bin_dir = output(Command::new(llvm_config_bin).arg("--bindir"));
1114                 let llvm_bin_dir = Path::new(llvm_bin_dir.trim());
1115                 builder.copy(&llvm_bin_dir.join(&src_exe), &libdir_bin.join(&dst_exe));
1116             }
1117         }
1118
1119         // Ensure that `libLLVM.so` ends up in the newly build compiler directory,
1120         // so that it can be found when the newly built `rustc` is run.
1121         dist::maybe_install_llvm_runtime(builder, target_compiler.host, &sysroot);
1122         dist::maybe_install_llvm_target(builder, target_compiler.host, &sysroot);
1123
1124         // Link the compiler binary itself into place
1125         let out_dir = builder.cargo_out(build_compiler, Mode::Rustc, host);
1126         let rustc = out_dir.join(exe("rustc-main", host));
1127         let bindir = sysroot.join("bin");
1128         t!(fs::create_dir_all(&bindir));
1129         let compiler = builder.rustc(target_compiler);
1130         builder.copy(&rustc, &compiler);
1131
1132         target_compiler
1133     }
1134 }
1135
1136 /// Link some files into a rustc sysroot.
1137 ///
1138 /// For a particular stage this will link the file listed in `stamp` into the
1139 /// `sysroot_dst` provided.
1140 pub fn add_to_sysroot(
1141     builder: &Builder<'_>,
1142     sysroot_dst: &Path,
1143     sysroot_host_dst: &Path,
1144     stamp: &Path,
1145 ) {
1146     let self_contained_dst = &sysroot_dst.join("self-contained");
1147     t!(fs::create_dir_all(&sysroot_dst));
1148     t!(fs::create_dir_all(&sysroot_host_dst));
1149     t!(fs::create_dir_all(&self_contained_dst));
1150     for (path, dependency_type) in builder.read_stamp_file(stamp) {
1151         let dst = match dependency_type {
1152             DependencyType::Host => sysroot_host_dst,
1153             DependencyType::Target => sysroot_dst,
1154             DependencyType::TargetSelfContained => self_contained_dst,
1155         };
1156         builder.copy(&path, &dst.join(path.file_name().unwrap()));
1157     }
1158 }
1159
1160 pub fn run_cargo(
1161     builder: &Builder<'_>,
1162     cargo: Cargo,
1163     tail_args: Vec<String>,
1164     stamp: &Path,
1165     additional_target_deps: Vec<(PathBuf, DependencyType)>,
1166     is_check: bool,
1167 ) -> Vec<PathBuf> {
1168     if builder.config.dry_run {
1169         return Vec::new();
1170     }
1171
1172     // `target_root_dir` looks like $dir/$target/release
1173     let target_root_dir = stamp.parent().unwrap();
1174     // `target_deps_dir` looks like $dir/$target/release/deps
1175     let target_deps_dir = target_root_dir.join("deps");
1176     // `host_root_dir` looks like $dir/release
1177     let host_root_dir = target_root_dir
1178         .parent()
1179         .unwrap() // chop off `release`
1180         .parent()
1181         .unwrap() // chop off `$target`
1182         .join(target_root_dir.file_name().unwrap());
1183
1184     // Spawn Cargo slurping up its JSON output. We'll start building up the
1185     // `deps` array of all files it generated along with a `toplevel` array of
1186     // files we need to probe for later.
1187     let mut deps = Vec::new();
1188     let mut toplevel = Vec::new();
1189     let ok = stream_cargo(builder, cargo, tail_args, &mut |msg| {
1190         let (filenames, crate_types) = match msg {
1191             CargoMessage::CompilerArtifact {
1192                 filenames,
1193                 target: CargoTarget { crate_types },
1194                 ..
1195             } => (filenames, crate_types),
1196             _ => return,
1197         };
1198         for filename in filenames {
1199             // Skip files like executables
1200             if !(filename.ends_with(".rlib")
1201                 || filename.ends_with(".lib")
1202                 || filename.ends_with(".a")
1203                 || is_debug_info(&filename)
1204                 || is_dylib(&filename)
1205                 || (is_check && filename.ends_with(".rmeta")))
1206             {
1207                 continue;
1208             }
1209
1210             let filename = Path::new(&*filename);
1211
1212             // If this was an output file in the "host dir" we don't actually
1213             // worry about it, it's not relevant for us
1214             if filename.starts_with(&host_root_dir) {
1215                 // Unless it's a proc macro used in the compiler
1216                 if crate_types.iter().any(|t| t == "proc-macro") {
1217                     deps.push((filename.to_path_buf(), DependencyType::Host));
1218                 }
1219                 continue;
1220             }
1221
1222             // If this was output in the `deps` dir then this is a precise file
1223             // name (hash included) so we start tracking it.
1224             if filename.starts_with(&target_deps_dir) {
1225                 deps.push((filename.to_path_buf(), DependencyType::Target));
1226                 continue;
1227             }
1228
1229             // Otherwise this was a "top level artifact" which right now doesn't
1230             // have a hash in the name, but there's a version of this file in
1231             // the `deps` folder which *does* have a hash in the name. That's
1232             // the one we'll want to we'll probe for it later.
1233             //
1234             // We do not use `Path::file_stem` or `Path::extension` here,
1235             // because some generated files may have multiple extensions e.g.
1236             // `std-<hash>.dll.lib` on Windows. The aforementioned methods only
1237             // split the file name by the last extension (`.lib`) while we need
1238             // to split by all extensions (`.dll.lib`).
1239             let expected_len = t!(filename.metadata()).len();
1240             let filename = filename.file_name().unwrap().to_str().unwrap();
1241             let mut parts = filename.splitn(2, '.');
1242             let file_stem = parts.next().unwrap().to_owned();
1243             let extension = parts.next().unwrap().to_owned();
1244
1245             toplevel.push((file_stem, extension, expected_len));
1246         }
1247     });
1248
1249     if !ok {
1250         exit(1);
1251     }
1252
1253     // Ok now we need to actually find all the files listed in `toplevel`. We've
1254     // got a list of prefix/extensions and we basically just need to find the
1255     // most recent file in the `deps` folder corresponding to each one.
1256     let contents = t!(target_deps_dir.read_dir())
1257         .map(|e| t!(e))
1258         .map(|e| (e.path(), e.file_name().into_string().unwrap(), t!(e.metadata())))
1259         .collect::<Vec<_>>();
1260     for (prefix, extension, expected_len) in toplevel {
1261         let candidates = contents.iter().filter(|&&(_, ref filename, ref meta)| {
1262             meta.len() == expected_len
1263                 && filename
1264                     .strip_prefix(&prefix[..])
1265                     .map(|s| s.starts_with('-') && s.ends_with(&extension[..]))
1266                     .unwrap_or(false)
1267         });
1268         let max = candidates
1269             .max_by_key(|&&(_, _, ref metadata)| FileTime::from_last_modification_time(metadata));
1270         let path_to_add = match max {
1271             Some(triple) => triple.0.to_str().unwrap(),
1272             None => panic!("no output generated for {:?} {:?}", prefix, extension),
1273         };
1274         if is_dylib(path_to_add) {
1275             let candidate = format!("{}.lib", path_to_add);
1276             let candidate = PathBuf::from(candidate);
1277             if candidate.exists() {
1278                 deps.push((candidate, DependencyType::Target));
1279             }
1280         }
1281         deps.push((path_to_add.into(), DependencyType::Target));
1282     }
1283
1284     deps.extend(additional_target_deps);
1285     deps.sort();
1286     let mut new_contents = Vec::new();
1287     for (dep, dependency_type) in deps.iter() {
1288         new_contents.extend(match *dependency_type {
1289             DependencyType::Host => b"h",
1290             DependencyType::Target => b"t",
1291             DependencyType::TargetSelfContained => b"s",
1292         });
1293         new_contents.extend(dep.to_str().unwrap().as_bytes());
1294         new_contents.extend(b"\0");
1295     }
1296     t!(fs::write(&stamp, &new_contents));
1297     deps.into_iter().map(|(d, _)| d).collect()
1298 }
1299
1300 pub fn stream_cargo(
1301     builder: &Builder<'_>,
1302     cargo: Cargo,
1303     tail_args: Vec<String>,
1304     cb: &mut dyn FnMut(CargoMessage<'_>),
1305 ) -> bool {
1306     let mut cargo = Command::from(cargo);
1307     if builder.config.dry_run {
1308         return true;
1309     }
1310     // Instruct Cargo to give us json messages on stdout, critically leaving
1311     // stderr as piped so we can get those pretty colors.
1312     let mut message_format = if builder.config.json_output {
1313         String::from("json")
1314     } else {
1315         String::from("json-render-diagnostics")
1316     };
1317     if let Some(s) = &builder.config.rustc_error_format {
1318         message_format.push_str(",json-diagnostic-");
1319         message_format.push_str(s);
1320     }
1321     cargo.arg("--message-format").arg(message_format).stdout(Stdio::piped());
1322
1323     for arg in tail_args {
1324         cargo.arg(arg);
1325     }
1326
1327     builder.verbose(&format!("running: {:?}", cargo));
1328     let mut child = match cargo.spawn() {
1329         Ok(child) => child,
1330         Err(e) => panic!("failed to execute command: {:?}\nerror: {}", cargo, e),
1331     };
1332
1333     // Spawn Cargo slurping up its JSON output. We'll start building up the
1334     // `deps` array of all files it generated along with a `toplevel` array of
1335     // files we need to probe for later.
1336     let stdout = BufReader::new(child.stdout.take().unwrap());
1337     for line in stdout.lines() {
1338         let line = t!(line);
1339         match serde_json::from_str::<CargoMessage<'_>>(&line) {
1340             Ok(msg) => {
1341                 if builder.config.json_output {
1342                     // Forward JSON to stdout.
1343                     println!("{}", line);
1344                 }
1345                 cb(msg)
1346             }
1347             // If this was informational, just print it out and continue
1348             Err(_) => println!("{}", line),
1349         }
1350     }
1351
1352     // Make sure Cargo actually succeeded after we read all of its stdout.
1353     let status = t!(child.wait());
1354     if !status.success() {
1355         eprintln!(
1356             "command did not execute successfully: {:?}\n\
1357                   expected success, got: {}",
1358             cargo, status
1359         );
1360     }
1361     status.success()
1362 }
1363
1364 #[derive(Deserialize)]
1365 pub struct CargoTarget<'a> {
1366     crate_types: Vec<Cow<'a, str>>,
1367 }
1368
1369 #[derive(Deserialize)]
1370 #[serde(tag = "reason", rename_all = "kebab-case")]
1371 pub enum CargoMessage<'a> {
1372     CompilerArtifact {
1373         package_id: Cow<'a, str>,
1374         features: Vec<Cow<'a, str>>,
1375         filenames: Vec<Cow<'a, str>>,
1376         target: CargoTarget<'a>,
1377     },
1378     BuildScriptExecuted {
1379         package_id: Cow<'a, str>,
1380     },
1381     BuildFinished {
1382         success: bool,
1383     },
1384 }