Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.3 KiB
Rust
Raw Normal View History

2022-08-06 13:34:55 +01:00
use std::env;
use std::path::Path;
2022-08-28 17:53:36 +00:00
use super::build_sysroot;
use super::config;
use super::prepare;
2022-08-28 16:38:09 +00:00
use super::utils::{cargo_command, spawn_and_wait};
2022-08-28 17:53:36 +00:00
use super::SysrootKind;
2022-08-06 13:34:55 +01:00
pub(crate) fn run(
channel: &str,
sysroot_kind: SysrootKind,
target_dir: &Path,
cg_clif_dylib: &Path,
2022-08-06 13:34:55 +01:00
host_triple: &str,
target_triple: &str,
) {
2022-09-26 13:56:18 +02:00
if !config::get_bool("testsuite.abi-cafe") {
eprintln!("[SKIP] abi-cafe");
2022-08-06 21:24:38 +01:00
return;
}
if host_triple != target_triple {
2022-09-26 13:56:18 +02:00
eprintln!("[SKIP] abi-cafe (cross-compilation not supported)");
2022-08-06 21:24:38 +01:00
return;
}
2022-08-06 13:34:55 +01:00
2022-09-26 13:56:18 +02:00
eprintln!("Building sysroot for abi-cafe");
2022-08-06 13:34:55 +01:00
build_sysroot::build_sysroot(
channel,
sysroot_kind,
target_dir,
cg_clif_dylib,
2022-08-06 13:34:55 +01:00
host_triple,
target_triple,
);
2022-09-26 13:56:18 +02:00
eprintln!("Running abi-cafe");
let abi_cafe_path = prepare::ABI_CAFE.source_dir();
env::set_current_dir(abi_cafe_path.clone()).unwrap();
2022-08-06 13:34:55 +01:00
let pairs = ["rustc_calls_cgclif", "cgclif_calls_rustc", "cgclif_calls_cc", "cc_calls_cgclif"];
2022-09-26 13:56:18 +02:00
let mut cmd = cargo_command("cargo", "run", Some(target_triple), &abi_cafe_path);
2022-08-06 20:51:47 +01:00
cmd.arg("--");
cmd.arg("--pairs");
cmd.args(pairs);
cmd.arg("--add-rustc-codegen-backend");
cmd.arg(format!("cgclif:{}", cg_clif_dylib.display()));
2022-08-06 20:51:47 +01:00
2022-08-12 21:47:36 +01:00
spawn_and_wait(cmd);
2022-08-06 13:34:55 +01:00
}