2021-06-08 07:33:25 -05:00
|
|
|
use std::fs;
|
2023-01-14 11:40:16 -06:00
|
|
|
use std::path::{Path, PathBuf};
|
2021-06-08 07:33:25 -05:00
|
|
|
use std::process::{self, Command};
|
|
|
|
|
2022-12-01 08:54:37 -06:00
|
|
|
use super::path::{Dirs, RelPath};
|
2023-02-13 04:11:45 -06:00
|
|
|
use super::rustc_info::{get_file_name, get_rustc_version};
|
2023-01-19 08:51:43 -06:00
|
|
|
use super::utils::{remove_dir_if_exists, spawn_and_wait, try_hard_link, CargoProject, Compiler};
|
2022-01-09 12:30:07 -06:00
|
|
|
use super::SysrootKind;
|
2021-06-18 06:38:50 -05:00
|
|
|
|
2022-12-01 07:30:03 -06:00
|
|
|
static DIST_DIR: RelPath = RelPath::DIST;
|
|
|
|
static BIN_DIR: RelPath = RelPath::DIST.join("bin");
|
|
|
|
static LIB_DIR: RelPath = RelPath::DIST.join("lib");
|
|
|
|
|
2021-06-08 07:33:25 -05:00
|
|
|
pub(crate) fn build_sysroot(
|
2022-12-01 08:54:37 -06:00
|
|
|
dirs: &Dirs,
|
2021-06-08 07:33:25 -05:00
|
|
|
channel: &str,
|
|
|
|
sysroot_kind: SysrootKind,
|
2022-08-28 11:46:09 -05:00
|
|
|
cg_clif_dylib_src: &Path,
|
2023-01-14 06:53:33 -06:00
|
|
|
bootstrap_host_compiler: &Compiler,
|
2023-02-13 04:11:45 -06:00
|
|
|
rustup_toolchain_name: Option<&str>,
|
2023-01-14 07:04:40 -06:00
|
|
|
target_triple: String,
|
|
|
|
) -> Compiler {
|
2022-07-30 04:32:54 -05:00
|
|
|
eprintln!("[BUILD] sysroot {:?}", sysroot_kind);
|
|
|
|
|
2022-12-01 08:54:37 -06:00
|
|
|
DIST_DIR.ensure_fresh(dirs);
|
|
|
|
BIN_DIR.ensure_exists(dirs);
|
|
|
|
LIB_DIR.ensure_exists(dirs);
|
2021-06-08 07:33:25 -05:00
|
|
|
|
2023-01-14 07:04:40 -06:00
|
|
|
let is_native = bootstrap_host_compiler.triple == target_triple;
|
|
|
|
|
2021-06-08 07:33:25 -05:00
|
|
|
// Copy the backend
|
2022-12-01 07:30:03 -06:00
|
|
|
let cg_clif_dylib_path = if cfg!(windows) {
|
|
|
|
// Windows doesn't have rpath support, so the cg_clif dylib needs to be next to the
|
|
|
|
// binaries.
|
|
|
|
BIN_DIR
|
|
|
|
} else {
|
|
|
|
LIB_DIR
|
|
|
|
}
|
2022-12-01 08:54:37 -06:00
|
|
|
.to_path(dirs)
|
2023-01-15 08:38:22 -06:00
|
|
|
.join(cg_clif_dylib_src.file_name().unwrap());
|
2022-08-28 11:46:09 -05:00
|
|
|
try_hard_link(cg_clif_dylib_src, &cg_clif_dylib_path);
|
2022-02-13 11:33:30 -06:00
|
|
|
|
2022-02-13 12:31:49 -06:00
|
|
|
// Build and copy rustc and cargo wrappers
|
2023-02-10 03:45:50 -06:00
|
|
|
let wrapper_base_name = get_file_name(&bootstrap_host_compiler.rustc, "____", "bin");
|
2022-10-28 07:51:15 -05:00
|
|
|
for wrapper in ["rustc-clif", "rustdoc-clif", "cargo-clif"] {
|
2023-01-15 08:14:13 -06:00
|
|
|
let wrapper_name = wrapper_base_name.replace("____", wrapper);
|
2022-07-30 04:32:54 -05:00
|
|
|
|
2023-01-14 08:08:23 -06:00
|
|
|
let mut build_cargo_wrapper_cmd = Command::new(&bootstrap_host_compiler.rustc);
|
2023-02-19 09:28:01 -06:00
|
|
|
let wrapper_path = DIST_DIR.to_path(dirs).join(&wrapper_name);
|
2022-02-13 12:31:49 -06:00
|
|
|
build_cargo_wrapper_cmd
|
2022-12-01 08:54:37 -06:00
|
|
|
.arg(RelPath::SCRIPTS.to_path(dirs).join(&format!("{wrapper}.rs")))
|
2022-02-13 12:31:49 -06:00
|
|
|
.arg("-o")
|
2023-02-19 09:28:01 -06:00
|
|
|
.arg(&wrapper_path)
|
2023-01-15 08:14:13 -06:00
|
|
|
.arg("-Cstrip=debuginfo");
|
2023-02-13 04:11:45 -06:00
|
|
|
if let Some(rustup_toolchain_name) = &rustup_toolchain_name {
|
|
|
|
build_cargo_wrapper_cmd
|
|
|
|
.env("TOOLCHAIN_NAME", rustup_toolchain_name)
|
|
|
|
.env_remove("CARGO")
|
|
|
|
.env_remove("RUSTC")
|
|
|
|
.env_remove("RUSTDOC");
|
|
|
|
} else {
|
|
|
|
build_cargo_wrapper_cmd
|
|
|
|
.env_remove("TOOLCHAIN_NAME")
|
|
|
|
.env("CARGO", &bootstrap_host_compiler.cargo)
|
|
|
|
.env("RUSTC", &bootstrap_host_compiler.rustc)
|
|
|
|
.env("RUSTDOC", &bootstrap_host_compiler.rustdoc);
|
|
|
|
}
|
2022-02-13 12:31:49 -06:00
|
|
|
spawn_and_wait(build_cargo_wrapper_cmd);
|
2023-02-19 09:28:01 -06:00
|
|
|
try_hard_link(wrapper_path, BIN_DIR.to_path(dirs).join(wrapper_name));
|
2022-02-13 12:31:49 -06:00
|
|
|
}
|
2021-06-08 07:33:25 -05:00
|
|
|
|
2023-01-14 12:25:43 -06:00
|
|
|
let host = build_sysroot_for_triple(
|
|
|
|
dirs,
|
|
|
|
channel,
|
|
|
|
bootstrap_host_compiler.clone(),
|
|
|
|
&cg_clif_dylib_path,
|
|
|
|
sysroot_kind,
|
|
|
|
);
|
|
|
|
host.install_into_sysroot(&DIST_DIR.to_path(dirs));
|
|
|
|
|
|
|
|
if !is_native {
|
|
|
|
build_sysroot_for_triple(
|
|
|
|
dirs,
|
|
|
|
channel,
|
2021-06-08 07:33:25 -05:00
|
|
|
{
|
2023-01-14 12:25:43 -06:00
|
|
|
let mut bootstrap_target_compiler = bootstrap_host_compiler.clone();
|
|
|
|
bootstrap_target_compiler.triple = target_triple.clone();
|
|
|
|
bootstrap_target_compiler.set_cross_linker_and_runner();
|
|
|
|
bootstrap_target_compiler
|
|
|
|
},
|
|
|
|
&cg_clif_dylib_path,
|
|
|
|
sysroot_kind,
|
|
|
|
)
|
|
|
|
.install_into_sysroot(&DIST_DIR.to_path(dirs));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy std for the host to the lib dir. This is necessary for the jit mode to find
|
|
|
|
// libstd.
|
|
|
|
for lib in host.libs {
|
|
|
|
let filename = lib.file_name().unwrap().to_str().unwrap();
|
|
|
|
if filename.contains("std-") && !filename.contains(".rlib") {
|
|
|
|
try_hard_link(&lib, LIB_DIR.to_path(dirs).join(lib.file_name().unwrap()));
|
2021-06-08 07:33:25 -05:00
|
|
|
}
|
|
|
|
}
|
2023-01-14 07:04:40 -06:00
|
|
|
|
2023-01-15 08:14:13 -06:00
|
|
|
let mut target_compiler = {
|
|
|
|
let dirs: &Dirs = &dirs;
|
|
|
|
let rustc_clif =
|
|
|
|
RelPath::DIST.to_path(&dirs).join(wrapper_base_name.replace("____", "rustc-clif"));
|
|
|
|
let rustdoc_clif =
|
|
|
|
RelPath::DIST.to_path(&dirs).join(wrapper_base_name.replace("____", "rustdoc-clif"));
|
|
|
|
|
|
|
|
Compiler {
|
2023-01-15 08:38:22 -06:00
|
|
|
cargo: bootstrap_host_compiler.cargo.clone(),
|
2023-01-15 08:14:13 -06:00
|
|
|
rustc: rustc_clif.clone(),
|
|
|
|
rustdoc: rustdoc_clif.clone(),
|
|
|
|
rustflags: String::new(),
|
|
|
|
rustdocflags: String::new(),
|
|
|
|
triple: target_triple,
|
|
|
|
runner: vec![],
|
|
|
|
}
|
|
|
|
};
|
2023-01-14 07:04:40 -06:00
|
|
|
if !is_native {
|
|
|
|
target_compiler.set_cross_linker_and_runner();
|
|
|
|
}
|
|
|
|
target_compiler
|
2021-06-08 07:33:25 -05:00
|
|
|
}
|
2021-06-18 06:27:56 -05:00
|
|
|
|
2023-01-14 11:40:16 -06:00
|
|
|
struct SysrootTarget {
|
|
|
|
triple: String,
|
|
|
|
libs: Vec<PathBuf>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SysrootTarget {
|
|
|
|
fn install_into_sysroot(&self, sysroot: &Path) {
|
2023-01-14 12:45:47 -06:00
|
|
|
if self.libs.is_empty() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-01-14 11:40:16 -06:00
|
|
|
let target_rustlib_lib = sysroot.join("lib").join("rustlib").join(&self.triple).join("lib");
|
|
|
|
fs::create_dir_all(&target_rustlib_lib).unwrap();
|
|
|
|
|
|
|
|
for lib in &self.libs {
|
|
|
|
try_hard_link(lib, target_rustlib_lib.join(lib.file_name().unwrap()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-05 11:26:54 -06:00
|
|
|
pub(crate) static ORIG_BUILD_SYSROOT: RelPath = RelPath::SOURCE.join("build_sysroot");
|
|
|
|
pub(crate) static BUILD_SYSROOT: RelPath = RelPath::DOWNLOAD.join("sysroot");
|
|
|
|
pub(crate) static SYSROOT_RUSTC_VERSION: RelPath = BUILD_SYSROOT.join("rustc_version");
|
|
|
|
pub(crate) static SYSROOT_SRC: RelPath = BUILD_SYSROOT.join("sysroot_src");
|
2023-01-13 09:58:39 -06:00
|
|
|
pub(crate) static STANDARD_LIBRARY: CargoProject =
|
|
|
|
CargoProject::new(&BUILD_SYSROOT, "build_sysroot");
|
2023-01-14 11:51:54 -06:00
|
|
|
pub(crate) static RTSTARTUP_SYSROOT: RelPath = RelPath::BUILD.join("rtstartup");
|
2022-10-26 09:51:03 -05:00
|
|
|
|
2023-01-14 12:25:43 -06:00
|
|
|
#[must_use]
|
|
|
|
fn build_sysroot_for_triple(
|
|
|
|
dirs: &Dirs,
|
|
|
|
channel: &str,
|
|
|
|
compiler: Compiler,
|
|
|
|
cg_clif_dylib_path: &Path,
|
|
|
|
sysroot_kind: SysrootKind,
|
|
|
|
) -> SysrootTarget {
|
|
|
|
match sysroot_kind {
|
2023-01-14 12:32:19 -06:00
|
|
|
SysrootKind::None => build_rtstartup(dirs, &compiler)
|
|
|
|
.unwrap_or(SysrootTarget { triple: compiler.triple, libs: vec![] }),
|
2023-01-14 12:25:43 -06:00
|
|
|
SysrootKind::Llvm => build_llvm_sysroot_for_triple(compiler),
|
|
|
|
SysrootKind::Clif => {
|
|
|
|
build_clif_sysroot_for_triple(dirs, channel, compiler, &cg_clif_dylib_path)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[must_use]
|
|
|
|
fn build_llvm_sysroot_for_triple(compiler: Compiler) -> SysrootTarget {
|
|
|
|
let default_sysroot = super::rustc_info::get_default_sysroot(&compiler.rustc);
|
|
|
|
|
|
|
|
let mut target_libs = SysrootTarget { triple: compiler.triple, libs: vec![] };
|
|
|
|
|
|
|
|
for entry in fs::read_dir(
|
|
|
|
default_sysroot.join("lib").join("rustlib").join(&target_libs.triple).join("lib"),
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
{
|
|
|
|
let entry = entry.unwrap();
|
|
|
|
if entry.file_type().unwrap().is_dir() {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let file = entry.path();
|
|
|
|
let file_name_str = file.file_name().unwrap().to_str().unwrap();
|
|
|
|
if (file_name_str.contains("rustc_")
|
|
|
|
&& !file_name_str.contains("rustc_std_workspace_")
|
|
|
|
&& !file_name_str.contains("rustc_demangle"))
|
|
|
|
|| file_name_str.contains("chalk")
|
|
|
|
|| file_name_str.contains("tracing")
|
|
|
|
|| file_name_str.contains("regex")
|
|
|
|
{
|
|
|
|
// These are large crates that are part of the rustc-dev component and are not
|
|
|
|
// necessary to run regular programs.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
target_libs.libs.push(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
target_libs
|
|
|
|
}
|
|
|
|
|
2023-01-14 11:40:16 -06:00
|
|
|
#[must_use]
|
2021-06-29 13:37:06 -05:00
|
|
|
fn build_clif_sysroot_for_triple(
|
2022-12-01 08:54:37 -06:00
|
|
|
dirs: &Dirs,
|
2021-06-29 13:37:06 -05:00
|
|
|
channel: &str,
|
2023-01-13 06:16:11 -06:00
|
|
|
mut compiler: Compiler,
|
2022-02-13 11:33:30 -06:00
|
|
|
cg_clif_dylib_path: &Path,
|
2023-01-14 11:40:16 -06:00
|
|
|
) -> SysrootTarget {
|
2022-12-01 08:54:37 -06:00
|
|
|
match fs::read_to_string(SYSROOT_RUSTC_VERSION.to_path(dirs)) {
|
2021-07-02 12:14:02 -05:00
|
|
|
Err(e) => {
|
|
|
|
eprintln!("Failed to get rustc version for patched sysroot source: {}", e);
|
|
|
|
eprintln!("Hint: Try `./y.rs prepare` to patch the sysroot source");
|
|
|
|
process::exit(1);
|
|
|
|
}
|
|
|
|
Ok(source_version) => {
|
2023-01-14 07:08:55 -06:00
|
|
|
let rustc_version = get_rustc_version(&compiler.rustc);
|
2021-07-02 12:14:02 -05:00
|
|
|
if source_version != rustc_version {
|
|
|
|
eprintln!("The patched sysroot source is outdated");
|
|
|
|
eprintln!("Source version: {}", source_version.trim());
|
|
|
|
eprintln!("Rustc version: {}", rustc_version.trim());
|
|
|
|
eprintln!("Hint: Try `./y.rs prepare` to update the patched sysroot source");
|
|
|
|
process::exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-14 11:51:54 -06:00
|
|
|
let mut target_libs = SysrootTarget { triple: compiler.triple.clone(), libs: vec![] };
|
|
|
|
|
2023-01-14 12:32:19 -06:00
|
|
|
if let Some(rtstartup_target_libs) = build_rtstartup(dirs, &compiler) {
|
2023-01-14 11:51:54 -06:00
|
|
|
rtstartup_target_libs.install_into_sysroot(&RTSTARTUP_SYSROOT.to_path(dirs));
|
2023-01-14 12:32:19 -06:00
|
|
|
|
|
|
|
target_libs.libs.extend(rtstartup_target_libs.libs);
|
2023-01-14 11:51:54 -06:00
|
|
|
}
|
|
|
|
|
2023-01-13 06:16:11 -06:00
|
|
|
let build_dir = STANDARD_LIBRARY.target_dir(dirs).join(&compiler.triple).join(channel);
|
2021-06-18 06:27:56 -05:00
|
|
|
|
2022-01-09 12:30:07 -06:00
|
|
|
if !super::config::get_bool("keep_sysroot") {
|
2022-02-13 11:46:53 -06:00
|
|
|
// Cleanup the deps dir, but keep build scripts and the incremental cache for faster
|
|
|
|
// recompilation as they are not affected by changes in cg_clif.
|
2023-01-19 08:51:43 -06:00
|
|
|
remove_dir_if_exists(&build_dir.join("deps"));
|
2021-06-18 06:27:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Build sysroot
|
2023-01-13 06:16:11 -06:00
|
|
|
let mut rustflags = " -Zforce-unstable-if-unmarked -Cpanic=abort".to_string();
|
2022-02-13 11:33:30 -06:00
|
|
|
rustflags.push_str(&format!(" -Zcodegen-backend={}", cg_clif_dylib_path.to_str().unwrap()));
|
2023-01-14 11:02:21 -06:00
|
|
|
// Necessary for MinGW to find rsbegin.o and rsend.o
|
2023-01-14 11:51:54 -06:00
|
|
|
rustflags
|
2023-02-15 12:25:18 -06:00
|
|
|
.push_str(&format!(" --sysroot {}", RTSTARTUP_SYSROOT.to_path(dirs).to_str().unwrap()));
|
2021-06-18 06:27:56 -05:00
|
|
|
if channel == "release" {
|
2023-02-26 07:01:47 -06:00
|
|
|
rustflags.push_str(" -Zmir-opt-level=3");
|
2021-06-18 06:27:56 -05:00
|
|
|
}
|
2023-01-13 06:16:11 -06:00
|
|
|
compiler.rustflags += &rustflags;
|
2022-12-01 08:54:37 -06:00
|
|
|
let mut build_cmd = STANDARD_LIBRARY.build(&compiler, dirs);
|
2022-10-26 09:51:03 -05:00
|
|
|
if channel == "release" {
|
|
|
|
build_cmd.arg("--release");
|
|
|
|
}
|
2023-02-17 11:42:14 -06:00
|
|
|
build_cmd.arg("--locked");
|
2021-11-23 07:25:28 -06:00
|
|
|
build_cmd.env("__CARGO_DEFAULT_LIB_METADATA", "cg_clif");
|
2023-02-03 14:01:39 -06:00
|
|
|
if compiler.triple.contains("apple") {
|
|
|
|
build_cmd.env("CARGO_PROFILE_RELEASE_SPLIT_DEBUGINFO", "packed");
|
|
|
|
}
|
2021-06-18 06:27:56 -05:00
|
|
|
spawn_and_wait(build_cmd);
|
|
|
|
|
2022-11-28 11:37:30 -06:00
|
|
|
for entry in fs::read_dir(build_dir.join("deps")).unwrap() {
|
2021-06-18 06:27:56 -05:00
|
|
|
let entry = entry.unwrap();
|
|
|
|
if let Some(ext) = entry.path().extension() {
|
2022-06-28 04:55:37 -05:00
|
|
|
if ext == "rmeta" || ext == "d" || ext == "dSYM" || ext == "clif" {
|
2021-06-18 06:27:56 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
};
|
2023-01-14 11:40:16 -06:00
|
|
|
target_libs.libs.push(entry.path());
|
2021-06-18 06:27:56 -05:00
|
|
|
}
|
2023-01-14 11:40:16 -06:00
|
|
|
|
|
|
|
target_libs
|
2021-06-18 06:27:56 -05:00
|
|
|
}
|
2023-01-14 12:32:19 -06:00
|
|
|
|
|
|
|
fn build_rtstartup(dirs: &Dirs, compiler: &Compiler) -> Option<SysrootTarget> {
|
|
|
|
if !compiler.triple.ends_with("windows-gnu") {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTSTARTUP_SYSROOT.ensure_fresh(dirs);
|
|
|
|
|
|
|
|
let rtstartup_src = SYSROOT_SRC.to_path(dirs).join("library").join("rtstartup");
|
|
|
|
let mut target_libs = SysrootTarget { triple: compiler.triple.clone(), libs: vec![] };
|
|
|
|
|
|
|
|
for file in ["rsbegin", "rsend"] {
|
|
|
|
let obj = RTSTARTUP_SYSROOT.to_path(dirs).join(format!("{file}.o"));
|
|
|
|
let mut build_rtstartup_cmd = Command::new(&compiler.rustc);
|
|
|
|
build_rtstartup_cmd
|
|
|
|
.arg("--target")
|
|
|
|
.arg(&compiler.triple)
|
|
|
|
.arg("--emit=obj")
|
|
|
|
.arg("-o")
|
|
|
|
.arg(&obj)
|
|
|
|
.arg(rtstartup_src.join(format!("{file}.rs")));
|
|
|
|
spawn_and_wait(build_rtstartup_cmd);
|
|
|
|
target_libs.libs.push(obj.clone());
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(target_libs)
|
|
|
|
}
|