]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/bin/rustdoc.rs
Rollup merge of #95005 - ssomers:btree_static_assert, r=thomcc
[rust.git] / src / bootstrap / bin / rustdoc.rs
1 //! Shim which is passed to Cargo as "rustdoc" when running the bootstrap.
2 //!
3 //! See comments in `src/bootstrap/rustc.rs` for more information.
4
5 use std::env;
6 use std::ffi::OsString;
7 use std::path::PathBuf;
8 use std::process::Command;
9
10 include!("../dylib_util.rs");
11
12 fn main() {
13     let args = env::args_os().skip(1).collect::<Vec<_>>();
14     let rustdoc = env::var_os("RUSTDOC_REAL").expect("RUSTDOC_REAL was not set");
15     let libdir = env::var_os("RUSTDOC_LIBDIR").expect("RUSTDOC_LIBDIR was not set");
16     let sysroot = env::var_os("RUSTC_SYSROOT").expect("RUSTC_SYSROOT was not set");
17
18     // Detect whether or not we're a build script depending on whether --target
19     // is passed (a bit janky...)
20     let target = args.windows(2).find(|w| &*w[0] == "--target").and_then(|w| w[1].to_str());
21
22     use std::str::FromStr;
23
24     let verbose = match env::var("RUSTC_VERBOSE") {
25         Ok(s) => usize::from_str(&s).expect("RUSTC_VERBOSE should be an integer"),
26         Err(_) => 0,
27     };
28
29     let mut dylib_path = dylib_path();
30     dylib_path.insert(0, PathBuf::from(libdir.clone()));
31
32     let mut cmd = Command::new(rustdoc);
33
34     if target.is_some() {
35         // The stage0 compiler has a special sysroot distinct from what we
36         // actually downloaded, so we just always pass the `--sysroot` option,
37         // unless one is already set.
38         if !args.iter().any(|arg| arg == "--sysroot") {
39             cmd.arg("--sysroot").arg(&sysroot);
40         }
41     }
42
43     cmd.args(&args);
44     cmd.env(dylib_path_var(), env::join_paths(&dylib_path).unwrap());
45
46     // Force all crates compiled by this compiler to (a) be unstable and (b)
47     // allow the `rustc_private` feature to link to other unstable crates
48     // also in the sysroot.
49     if env::var_os("RUSTC_FORCE_UNSTABLE").is_some() {
50         cmd.arg("-Z").arg("force-unstable-if-unmarked");
51     }
52     if let Some(linker) = env::var_os("RUSTDOC_LINKER") {
53         let mut arg = OsString::from("-Clinker=");
54         arg.push(&linker);
55         cmd.arg(arg);
56     }
57     if env::var_os("RUSTDOC_FUSE_LD_LLD").is_some() {
58         cmd.arg("-Clink-arg=-fuse-ld=lld");
59         if cfg!(windows) {
60             cmd.arg("-Clink-arg=-Wl,/threads:1");
61         } else {
62             cmd.arg("-Clink-arg=-Wl,--threads=1");
63         }
64     }
65
66     if verbose > 1 {
67         eprintln!(
68             "rustdoc command: {:?}={:?} {:?}",
69             dylib_path_var(),
70             env::join_paths(&dylib_path).unwrap(),
71             cmd,
72         );
73         eprintln!("sysroot: {:?}", sysroot);
74         eprintln!("libdir: {:?}", libdir);
75     }
76
77     std::process::exit(match cmd.status() {
78         Ok(s) => s.code().unwrap_or(1),
79         Err(e) => panic!("\n\nfailed to run {:?}: {}\n\n", cmd, e),
80     })
81 }