2024-04-02 09:17:35 -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
|
|
|
|
2023-07-24 08:27:17 -05:00
|
|
|
use crate::path::{Dirs, RelPath};
|
|
|
|
use crate::rustc_info::get_file_name;
|
2023-08-02 04:06:29 -05:00
|
|
|
use crate::shared_utils::{rustflags_from_env, rustflags_to_cmd_env};
|
2024-04-02 09:17:35 -05:00
|
|
|
use crate::utils::{CargoProject, Compiler, LogGroup};
|
2022-10-26 09:51:03 -05:00
|
|
|
|
2024-09-12 14:02:13 -05:00
|
|
|
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,
|
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);
|
2021-12-30 06:03:32 -06:00
|
|
|
|
2023-08-02 04:06:29 -05:00
|
|
|
let mut rustflags = rustflags_from_env("RUSTFLAGS");
|
2023-09-02 12:08:34 -05:00
|
|
|
rustflags.push("-Zallow-features=rustc_private".to_owned());
|
2024-09-13 10:00:14 -05:00
|
|
|
rustflags_to_cmd_env(&mut cmd, "RUSTFLAGS", &rustflags);
|
2023-09-02 12:08:34 -05:00
|
|
|
|
2024-04-02 09:17:35 -05:00
|
|
|
if env::var("CG_CLIF_EXPENSIVE_CHECKS").is_ok() {
|
|
|
|
// Enabling debug assertions implicitly enables the clif ir verifier
|
|
|
|
cmd.env("CARGO_PROFILE_RELEASE_DEBUG_ASSERTIONS", "true");
|
|
|
|
cmd.env("CARGO_PROFILE_RELEASE_OVERFLOW_CHECKS", "true");
|
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
|
|
|
|
2024-08-10 09:16:53 -05:00
|
|
|
cmd.arg("--release");
|
2021-06-08 07:33:25 -05:00
|
|
|
|
|
|
|
eprintln!("[BUILD] rustc_codegen_cranelift");
|
2023-07-24 08:27:17 -05:00
|
|
|
crate::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)
|
2024-08-10 09:16:53 -05:00
|
|
|
.join("release")
|
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
|
|
|
}
|