2022-08-28 17:53:36 +00:00
|
|
|
use super::build_sysroot;
|
2022-12-01 14:54:37 +00:00
|
|
|
use super::path::Dirs;
|
2022-10-26 14:51:03 +00:00
|
|
|
use super::prepare::GitRepo;
|
|
|
|
use super::utils::{spawn_and_wait, CargoProject, Compiler};
|
2023-02-15 19:32:58 +00:00
|
|
|
use super::{CodegenBackend, SysrootKind};
|
2022-08-28 17:53:36 +00:00
|
|
|
|
2023-01-27 18:44:19 +00:00
|
|
|
static ABI_CAFE_REPO: GitRepo =
|
2022-10-26 14:51:03 +00:00
|
|
|
GitRepo::github("Gankra", "abi-cafe", "4c6dc8c9c687e2b3a760ff2176ce236872b37212", "abi-cafe");
|
|
|
|
|
2023-04-14 13:17:11 +00:00
|
|
|
static ABI_CAFE: CargoProject = CargoProject::new(&ABI_CAFE_REPO.source_dir(), "abi_cafe_target");
|
2022-10-26 14:51:03 +00:00
|
|
|
|
2022-08-06 12:34:55 +00:00
|
|
|
pub(crate) fn run(
|
|
|
|
channel: &str,
|
|
|
|
sysroot_kind: SysrootKind,
|
2022-12-01 14:54:37 +00:00
|
|
|
dirs: &Dirs,
|
2023-02-15 19:32:58 +00:00
|
|
|
cg_clif_dylib: &CodegenBackend,
|
2023-02-13 10:11:45 +00:00
|
|
|
rustup_toolchain_name: Option<&str>,
|
2023-01-14 12:53:33 +00:00
|
|
|
bootstrap_host_compiler: &Compiler,
|
2022-08-06 12:34:55 +00:00
|
|
|
) {
|
2023-01-27 18:44:19 +00:00
|
|
|
ABI_CAFE_REPO.fetch(dirs);
|
|
|
|
|
2022-09-26 11:56:18 +00:00
|
|
|
eprintln!("Building sysroot for abi-cafe");
|
2022-12-01 14:54:37 +00:00
|
|
|
build_sysroot::build_sysroot(
|
|
|
|
dirs,
|
|
|
|
channel,
|
|
|
|
sysroot_kind,
|
|
|
|
cg_clif_dylib,
|
2023-01-14 12:53:33 +00:00
|
|
|
bootstrap_host_compiler,
|
2023-02-13 10:11:45 +00:00
|
|
|
rustup_toolchain_name,
|
2023-01-14 13:04:40 +00:00
|
|
|
bootstrap_host_compiler.triple.clone(),
|
2022-12-01 14:54:37 +00:00
|
|
|
);
|
2022-08-06 12:34:55 +00:00
|
|
|
|
2022-09-26 11:56:18 +00:00
|
|
|
eprintln!("Running abi-cafe");
|
2022-08-06 12:34:55 +00:00
|
|
|
|
|
|
|
let pairs = ["rustc_calls_cgclif", "cgclif_calls_rustc", "cgclif_calls_cc", "cc_calls_cgclif"];
|
|
|
|
|
2023-01-14 12:53:33 +00:00
|
|
|
let mut cmd = ABI_CAFE.run(bootstrap_host_compiler, dirs);
|
2022-08-06 19:51:47 +00:00
|
|
|
cmd.arg("--");
|
|
|
|
cmd.arg("--pairs");
|
|
|
|
cmd.args(pairs);
|
|
|
|
cmd.arg("--add-rustc-codegen-backend");
|
2023-02-15 19:32:58 +00:00
|
|
|
match cg_clif_dylib {
|
|
|
|
CodegenBackend::Local(path) => {
|
|
|
|
cmd.arg(format!("cgclif:{}", path.display()));
|
|
|
|
}
|
|
|
|
CodegenBackend::Builtin(name) => {
|
|
|
|
cmd.arg(format!("cgclif:{name}"));
|
|
|
|
}
|
|
|
|
}
|
2022-12-01 14:54:37 +00:00
|
|
|
cmd.current_dir(ABI_CAFE.source_dir(dirs));
|
2022-08-06 19:51:47 +00:00
|
|
|
|
2022-08-12 20:47:36 +00:00
|
|
|
spawn_and_wait(cmd);
|
2022-08-06 12:34:55 +00:00
|
|
|
}
|