2021-06-08 07:33:25 -05:00
|
|
|
use std::env;
|
2022-08-28 11:38:09 -05:00
|
|
|
use std::path::PathBuf;
|
2021-06-08 07:33:25 -05:00
|
|
|
|
2022-12-01 08:54:37 -06:00
|
|
|
use super::path::{Dirs, RelPath};
|
2022-08-28 11:46:09 -05:00
|
|
|
use super::rustc_info::get_file_name;
|
2023-07-12 11:26:06 -05:00
|
|
|
use super::utils::{is_ci, is_ci_opt, maybe_incremental, CargoProject, Compiler, LogGroup};
|
2022-10-26 09:51:03 -05:00
|
|
|
|
2023-01-13 09:40:22 -06:00
|
|
|
pub(crate) static CG_CLIF: CargoProject = CargoProject::new(&RelPath::SOURCE, "cg_clif");
|
2022-08-05 07:57:19 -05:00
|
|
|
|
2021-12-03 06:16:34 -06:00
|
|
|
pub(crate) fn build_backend(
|
2022-12-01 08:54:37 -06:00
|
|
|
dirs: &Dirs,
|
2021-12-03 06:16:34 -06:00
|
|
|
channel: &str,
|
2023-01-14 06:53:33 -06:00
|
|
|
bootstrap_host_compiler: &Compiler,
|
2021-12-03 06:16:34 -06:00
|
|
|
use_unstable_features: bool,
|
|
|
|
) -> PathBuf {
|
2023-07-12 11:26:06 -05:00
|
|
|
let _group = LogGroup::guard("Build backend");
|
|
|
|
|
2023-01-14 06:53:33 -06:00
|
|
|
let mut cmd = CG_CLIF.build(&bootstrap_host_compiler, dirs);
|
2023-05-29 08:18:41 -05:00
|
|
|
maybe_incremental(&mut cmd);
|
2021-12-30 06:03:32 -06:00
|
|
|
|
2021-12-30 05:40:23 -06:00
|
|
|
let mut rustflags = env::var("RUSTFLAGS").unwrap_or_default();
|
|
|
|
|
2022-08-05 07:57:19 -05:00
|
|
|
if is_ci() {
|
2021-12-30 07:07:44 -06:00
|
|
|
// Deny warnings on CI
|
2021-12-30 05:40:23 -06:00
|
|
|
rustflags += " -Dwarnings";
|
2022-08-05 08:17:13 -05:00
|
|
|
|
2023-02-04 04:22:24 -06:00
|
|
|
if !is_ci_opt() {
|
|
|
|
cmd.env("CARGO_PROFILE_RELEASE_DEBUG_ASSERTIONS", "true");
|
2023-05-22 13:35:56 -05:00
|
|
|
cmd.env("CARGO_PROFILE_RELEASE_OVERFLOW_CHECKS", "true");
|
2023-02-04 04:22:24 -06:00
|
|
|
}
|
2021-12-30 05:40:23 -06:00
|
|
|
}
|
|
|
|
|
2021-12-03 06:16:34 -06:00
|
|
|
if use_unstable_features {
|
|
|
|
cmd.arg("--features").arg("unstable-features");
|
|
|
|
}
|
2021-06-08 07:33:25 -05:00
|
|
|
|
|
|
|
match channel {
|
|
|
|
"debug" => {}
|
|
|
|
"release" => {
|
|
|
|
cmd.arg("--release");
|
|
|
|
}
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
|
2021-12-30 05:40:23 -06:00
|
|
|
cmd.env("RUSTFLAGS", rustflags);
|
|
|
|
|
2021-06-08 07:33:25 -05:00
|
|
|
eprintln!("[BUILD] rustc_codegen_cranelift");
|
2022-01-09 12:30:07 -06:00
|
|
|
super::utils::spawn_and_wait(cmd);
|
2021-06-08 07:33:25 -05:00
|
|
|
|
2022-10-26 09:51:03 -05:00
|
|
|
CG_CLIF
|
2022-12-01 08:54:37 -06:00
|
|
|
.target_dir(dirs)
|
2023-01-14 06:53:33 -06:00
|
|
|
.join(&bootstrap_host_compiler.triple)
|
2022-08-28 11:46:09 -05:00
|
|
|
.join(channel)
|
2023-02-10 03:45:50 -06:00
|
|
|
.join(get_file_name(&bootstrap_host_compiler.rustc, "rustc_codegen_cranelift", "dylib"))
|
2021-06-08 07:33:25 -05:00
|
|
|
}
|