2021-07-07 04:14:20 -05:00
|
|
|
use std::env;
|
2022-10-23 09:22:55 -05:00
|
|
|
use std::path::PathBuf;
|
2021-07-07 04:14:20 -05:00
|
|
|
|
2022-12-14 12:30:46 -06:00
|
|
|
use super::path::{Dirs, RelPath};
|
2022-10-23 09:22:55 -05:00
|
|
|
use super::rustc_info::get_file_name;
|
2023-06-15 12:56:01 -05:00
|
|
|
use super::utils::{is_ci, is_ci_opt, maybe_incremental, CargoProject, Compiler};
|
2022-12-14 12:30:46 -06:00
|
|
|
|
2023-01-24 11:56:42 -06:00
|
|
|
pub(crate) static CG_CLIF: CargoProject = CargoProject::new(&RelPath::SOURCE, "cg_clif");
|
2022-08-24 11:40:58 -05:00
|
|
|
|
2021-12-20 11:56:35 -06:00
|
|
|
pub(crate) fn build_backend(
|
2022-12-14 12:30:46 -06:00
|
|
|
dirs: &Dirs,
|
2021-12-20 11:56:35 -06:00
|
|
|
channel: &str,
|
2023-01-24 11:56:42 -06:00
|
|
|
bootstrap_host_compiler: &Compiler,
|
2021-12-20 11:56:35 -06:00
|
|
|
use_unstable_features: bool,
|
|
|
|
) -> PathBuf {
|
2023-01-24 11:56:42 -06:00
|
|
|
let mut cmd = CG_CLIF.build(&bootstrap_host_compiler, dirs);
|
2023-06-15 12:56:01 -05:00
|
|
|
maybe_incremental(&mut cmd);
|
2021-12-30 07:53:41 -06:00
|
|
|
|
|
|
|
let mut rustflags = env::var("RUSTFLAGS").unwrap_or_default();
|
|
|
|
|
2022-08-24 11:40:58 -05:00
|
|
|
if is_ci() {
|
2021-12-30 07:53:41 -06:00
|
|
|
// Deny warnings on CI
|
|
|
|
rustflags += " -Dwarnings";
|
|
|
|
|
2023-02-09 05:38:16 -06:00
|
|
|
if !is_ci_opt() {
|
|
|
|
cmd.env("CARGO_PROFILE_RELEASE_DEBUG_ASSERTIONS", "true");
|
2023-06-15 12:56:01 -05:00
|
|
|
cmd.env("CARGO_PROFILE_RELEASE_OVERFLOW_CHECKS", "true");
|
2023-02-09 05:38:16 -06:00
|
|
|
}
|
2021-12-30 07:53:41 -06:00
|
|
|
}
|
|
|
|
|
2021-12-20 11:56:35 -06:00
|
|
|
if use_unstable_features {
|
|
|
|
cmd.arg("--features").arg("unstable-features");
|
|
|
|
}
|
2021-07-07 04:14:20 -05:00
|
|
|
|
|
|
|
match channel {
|
|
|
|
"debug" => {}
|
|
|
|
"release" => {
|
|
|
|
cmd.arg("--release");
|
|
|
|
}
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
|
2021-12-30 07:53:41 -06:00
|
|
|
cmd.env("RUSTFLAGS", rustflags);
|
|
|
|
|
2021-07-07 04:14:20 -05:00
|
|
|
eprintln!("[BUILD] rustc_codegen_cranelift");
|
2022-02-23 04:49:34 -06:00
|
|
|
super::utils::spawn_and_wait(cmd);
|
2021-07-07 04:14:20 -05:00
|
|
|
|
2022-12-14 12:30:46 -06:00
|
|
|
CG_CLIF
|
|
|
|
.target_dir(dirs)
|
2023-01-24 11:56:42 -06:00
|
|
|
.join(&bootstrap_host_compiler.triple)
|
2022-10-23 09:22:55 -05:00
|
|
|
.join(channel)
|
2023-06-15 12:56:01 -05:00
|
|
|
.join(get_file_name(&bootstrap_host_compiler.rustc, "rustc_codegen_cranelift", "dylib"))
|
2021-07-07 04:14:20 -05:00
|
|
|
}
|