2021-06-08 07:33:25 -05:00
|
|
|
use std::env;
|
2021-07-04 11:15:13 -05:00
|
|
|
use std::path::{Path, PathBuf};
|
2021-06-11 11:50:01 -05:00
|
|
|
use std::process::Command;
|
2021-06-08 07:33:25 -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 {
|
2021-06-08 07:33:25 -05:00
|
|
|
let mut cmd = Command::new("cargo");
|
2021-12-03 06:16:34 -06:00
|
|
|
cmd.arg("build").arg("--target").arg(host_triple);
|
|
|
|
|
2021-12-30 05:40:23 -06:00
|
|
|
let mut rustflags = env::var("RUSTFLAGS").unwrap_or_default();
|
|
|
|
|
|
|
|
// Deny warnings on CI
|
|
|
|
if env::var("CI").as_ref().map(|val| &**val) == Ok("true") {
|
|
|
|
rustflags += " -Dwarnings";
|
|
|
|
}
|
|
|
|
|
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
|
|
|
// Set the rpath to make the cg_clif executable find librustc_codegen_cranelift without changing
|
|
|
|
// LD_LIBRARY_PATH
|
2021-06-08 07:33:25 -05:00
|
|
|
if cfg!(unix) {
|
|
|
|
if cfg!(target_os = "macos") {
|
2021-12-30 05:40:23 -06:00
|
|
|
rustflags += " -Csplit-debuginfo=unpacked \
|
2021-06-08 07:33:25 -05:00
|
|
|
-Clink-arg=-Wl,-rpath,@loader_path/../lib \
|
2021-12-30 05:40:23 -06:00
|
|
|
-Zosx-rpath-install-name";
|
2021-06-08 07:33:25 -05:00
|
|
|
} else {
|
2021-12-30 05:40:23 -06:00
|
|
|
rustflags += " -Clink-arg=-Wl,-rpath=$ORIGIN/../lib ";
|
2021-06-08 07:33:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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");
|
2021-06-11 11:50:01 -05:00
|
|
|
crate::utils::spawn_and_wait(cmd);
|
2021-06-08 07:33:25 -05:00
|
|
|
|
2021-07-04 11:15:13 -05:00
|
|
|
Path::new("target").join(host_triple).join(channel)
|
2021-06-08 07:33:25 -05:00
|
|
|
}
|