2022-08-06 07:34:55 -05:00
|
|
|
use super::build_sysroot;
|
2022-08-06 15:24:38 -05:00
|
|
|
use super::config;
|
2022-08-12 15:47:36 -05:00
|
|
|
use super::utils::spawn_and_wait;
|
2022-08-06 07:34:55 -05:00
|
|
|
use build_system::SysrootKind;
|
|
|
|
use std::env;
|
|
|
|
use std::path::Path;
|
|
|
|
use std::process::Command;
|
|
|
|
|
|
|
|
pub(crate) fn run(
|
|
|
|
channel: &str,
|
|
|
|
sysroot_kind: SysrootKind,
|
|
|
|
target_dir: &Path,
|
2022-08-28 11:46:09 -05:00
|
|
|
cg_clif_dylib: &Path,
|
2022-08-06 07:34:55 -05:00
|
|
|
host_triple: &str,
|
|
|
|
target_triple: &str,
|
|
|
|
) {
|
2022-08-06 15:24:38 -05:00
|
|
|
if !config::get_bool("testsuite.abi-checker") {
|
|
|
|
eprintln!("[SKIP] abi-checker");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if host_triple != target_triple {
|
|
|
|
eprintln!("[SKIP] abi-checker (cross-compilation not supported)");
|
|
|
|
return;
|
|
|
|
}
|
2022-08-06 07:34:55 -05:00
|
|
|
|
|
|
|
eprintln!("Building sysroot for abi-checker");
|
|
|
|
build_sysroot::build_sysroot(
|
|
|
|
channel,
|
|
|
|
sysroot_kind,
|
|
|
|
target_dir,
|
2022-08-28 11:46:09 -05:00
|
|
|
cg_clif_dylib,
|
2022-08-06 07:34:55 -05:00
|
|
|
host_triple,
|
|
|
|
target_triple,
|
|
|
|
);
|
|
|
|
|
|
|
|
eprintln!("Running abi-checker");
|
|
|
|
let mut abi_checker_path = env::current_dir().unwrap();
|
|
|
|
abi_checker_path.push("abi-checker");
|
|
|
|
env::set_current_dir(abi_checker_path.clone()).unwrap();
|
|
|
|
|
|
|
|
let pairs = ["rustc_calls_cgclif", "cgclif_calls_rustc", "cgclif_calls_cc", "cc_calls_cgclif"];
|
|
|
|
|
2022-08-06 14:51:47 -05:00
|
|
|
let mut cmd = Command::new("cargo");
|
|
|
|
cmd.arg("run");
|
|
|
|
cmd.arg("--target");
|
|
|
|
cmd.arg(target_triple);
|
|
|
|
cmd.arg("--");
|
|
|
|
cmd.arg("--pairs");
|
|
|
|
cmd.args(pairs);
|
|
|
|
cmd.arg("--add-rustc-codegen-backend");
|
2022-08-28 11:46:09 -05:00
|
|
|
cmd.arg(format!("cgclif:{}", cg_clif_dylib.display()));
|
2022-08-06 14:51:47 -05:00
|
|
|
|
2022-08-12 15:47:36 -05:00
|
|
|
spawn_and_wait(cmd);
|
2022-08-06 07:34:55 -05:00
|
|
|
}
|