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-08-28 11:46:09 -05:00
|
|
|
use super::rustc_info::get_file_name;
|
2022-08-28 11:38:09 -05:00
|
|
|
use super::utils::{cargo_command, is_ci};
|
2022-08-05 07:57:19 -05:00
|
|
|
|
2021-12-03 06:16:34 -06:00
|
|
|
pub(crate) fn build_backend(
|
|
|
|
channel: &str,
|
|
|
|
host_triple: &str,
|
|
|
|
use_unstable_features: bool,
|
|
|
|
) -> PathBuf {
|
2022-08-28 11:38:09 -05:00
|
|
|
let source_dir = std::env::current_dir().unwrap();
|
|
|
|
let mut cmd = cargo_command("cargo", "build", Some(host_triple), &source_dir);
|
2021-12-03 06:16:34 -06:00
|
|
|
|
2021-12-30 06:03:32 -06:00
|
|
|
cmd.env("CARGO_BUILD_INCREMENTAL", "true"); // Force incr comp even in release mode
|
|
|
|
|
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
|
|
|
|
|
|
|
// Disabling incr comp reduces cache size and incr comp doesn't save as much on CI anyway
|
|
|
|
cmd.env("CARGO_BUILD_INCREMENTAL", "false");
|
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-08-28 11:38:09 -05:00
|
|
|
source_dir
|
|
|
|
.join("target")
|
2022-08-28 11:46:09 -05:00
|
|
|
.join(host_triple)
|
|
|
|
.join(channel)
|
|
|
|
.join(get_file_name("rustc_codegen_cranelift", "dylib"))
|
2021-06-08 07:33:25 -05:00
|
|
|
}
|