2022-08-06 07:34:55 -05:00
|
|
|
use std::path::Path;
|
|
|
|
|
2022-08-28 12:53:36 -05:00
|
|
|
use super::build_sysroot;
|
|
|
|
use super::config;
|
2022-12-01 08:54:37 -06:00
|
|
|
use super::path::Dirs;
|
2022-10-26 09:51:03 -05:00
|
|
|
use super::prepare::GitRepo;
|
|
|
|
use super::utils::{spawn_and_wait, CargoProject, Compiler};
|
2022-08-28 12:53:36 -05:00
|
|
|
use super::SysrootKind;
|
|
|
|
|
2022-10-26 09:51:03 -05:00
|
|
|
pub(crate) static ABI_CAFE_REPO: GitRepo =
|
|
|
|
GitRepo::github("Gankra", "abi-cafe", "4c6dc8c9c687e2b3a760ff2176ce236872b37212", "abi-cafe");
|
|
|
|
|
2023-01-13 09:58:39 -06:00
|
|
|
pub(crate) static ABI_CAFE: CargoProject =
|
|
|
|
CargoProject::new(&ABI_CAFE_REPO.source_dir(), "abi_cafe");
|
2022-10-26 09:51:03 -05:00
|
|
|
|
2022-08-06 07:34:55 -05:00
|
|
|
pub(crate) fn run(
|
|
|
|
channel: &str,
|
|
|
|
sysroot_kind: SysrootKind,
|
2022-12-01 08:54:37 -06:00
|
|
|
dirs: &Dirs,
|
2022-08-28 11:46:09 -05:00
|
|
|
cg_clif_dylib: &Path,
|
2023-01-13 06:16:11 -06:00
|
|
|
host_compiler: &Compiler,
|
2022-08-06 07:34:55 -05:00
|
|
|
) {
|
2022-09-26 06:56:18 -05:00
|
|
|
if !config::get_bool("testsuite.abi-cafe") {
|
2023-01-14 06:14:19 -06:00
|
|
|
eprintln!("[RUN] abi-cafe (skipped)");
|
2022-08-06 15:24:38 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-09-26 06:56:18 -05:00
|
|
|
eprintln!("Building sysroot for abi-cafe");
|
2022-12-01 08:54:37 -06:00
|
|
|
build_sysroot::build_sysroot(
|
|
|
|
dirs,
|
|
|
|
channel,
|
|
|
|
sysroot_kind,
|
|
|
|
cg_clif_dylib,
|
2023-01-13 06:16:11 -06:00
|
|
|
host_compiler,
|
|
|
|
&host_compiler.triple,
|
2022-12-01 08:54:37 -06:00
|
|
|
);
|
2022-08-06 07:34:55 -05:00
|
|
|
|
2022-09-26 06:56:18 -05:00
|
|
|
eprintln!("Running abi-cafe");
|
2022-08-06 07:34:55 -05:00
|
|
|
|
|
|
|
let pairs = ["rustc_calls_cgclif", "cgclif_calls_rustc", "cgclif_calls_cc", "cc_calls_cgclif"];
|
|
|
|
|
2023-01-13 06:16:11 -06:00
|
|
|
let mut cmd = ABI_CAFE.run(host_compiler, dirs);
|
2022-08-06 14:51:47 -05:00
|
|
|
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-12-01 08:54:37 -06:00
|
|
|
cmd.current_dir(ABI_CAFE.source_dir(dirs));
|
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
|
|
|
}
|