2023-08-09 13:20:12 -05:00
|
|
|
use crate::build_sysroot;
|
|
|
|
use crate::path::Dirs;
|
|
|
|
use crate::prepare::GitRepo;
|
|
|
|
use crate::utils::{spawn_and_wait, CargoProject, Compiler};
|
|
|
|
use crate::{CodegenBackend, SysrootKind};
|
2022-10-23 09:22:55 -05:00
|
|
|
|
2023-06-15 12:56:01 -05:00
|
|
|
static ABI_CAFE_REPO: GitRepo = GitRepo::github(
|
|
|
|
"Gankra",
|
|
|
|
"abi-cafe",
|
|
|
|
"4c6dc8c9c687e2b3a760ff2176ce236872b37212",
|
|
|
|
"588df6d66abbe105",
|
|
|
|
"abi-cafe",
|
|
|
|
);
|
2022-12-14 12:30:46 -06:00
|
|
|
|
2023-06-15 12:56:01 -05:00
|
|
|
static ABI_CAFE: CargoProject = CargoProject::new(&ABI_CAFE_REPO.source_dir(), "abi_cafe_target");
|
2022-12-14 12:30:46 -06:00
|
|
|
|
2022-10-23 09:22:55 -05:00
|
|
|
pub(crate) fn run(
|
|
|
|
channel: &str,
|
|
|
|
sysroot_kind: SysrootKind,
|
2022-12-14 12:30:46 -06:00
|
|
|
dirs: &Dirs,
|
2023-06-15 12:56:01 -05:00
|
|
|
cg_clif_dylib: &CodegenBackend,
|
|
|
|
rustup_toolchain_name: Option<&str>,
|
2023-01-24 11:56:42 -06:00
|
|
|
bootstrap_host_compiler: &Compiler,
|
2022-10-23 09:22:55 -05:00
|
|
|
) {
|
2023-02-09 05:38:16 -06:00
|
|
|
ABI_CAFE_REPO.fetch(dirs);
|
2023-06-15 12:56:01 -05:00
|
|
|
ABI_CAFE_REPO.patch(dirs);
|
2023-02-09 05:38:16 -06:00
|
|
|
|
2022-10-23 09:22:55 -05:00
|
|
|
eprintln!("Building sysroot for abi-cafe");
|
|
|
|
build_sysroot::build_sysroot(
|
2022-12-14 12:30:46 -06:00
|
|
|
dirs,
|
2022-10-23 09:22:55 -05:00
|
|
|
channel,
|
|
|
|
sysroot_kind,
|
|
|
|
cg_clif_dylib,
|
2023-01-24 11:56:42 -06:00
|
|
|
bootstrap_host_compiler,
|
2023-06-15 12:56:01 -05:00
|
|
|
rustup_toolchain_name,
|
2023-01-24 11:56:42 -06:00
|
|
|
bootstrap_host_compiler.triple.clone(),
|
2022-10-23 09:22:55 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
eprintln!("Running abi-cafe");
|
|
|
|
|
|
|
|
let pairs = ["rustc_calls_cgclif", "cgclif_calls_rustc", "cgclif_calls_cc", "cc_calls_cgclif"];
|
|
|
|
|
2023-01-24 11:56:42 -06:00
|
|
|
let mut cmd = ABI_CAFE.run(bootstrap_host_compiler, dirs);
|
2022-10-23 09:22:55 -05:00
|
|
|
cmd.arg("--");
|
|
|
|
cmd.arg("--pairs");
|
2024-04-23 04:37:28 -05:00
|
|
|
cmd.args(
|
|
|
|
if cfg!(not(any(target_os = "macos", all(target_os = "windows", target_env = "msvc")))) {
|
|
|
|
&pairs[..]
|
|
|
|
} else {
|
|
|
|
&pairs[..2]
|
|
|
|
},
|
|
|
|
);
|
2022-10-23 09:22:55 -05:00
|
|
|
cmd.arg("--add-rustc-codegen-backend");
|
2023-06-15 12:56:01 -05:00
|
|
|
match cg_clif_dylib {
|
|
|
|
CodegenBackend::Local(path) => {
|
|
|
|
cmd.arg(format!("cgclif:{}", path.display()));
|
|
|
|
}
|
|
|
|
CodegenBackend::Builtin(name) => {
|
|
|
|
cmd.arg(format!("cgclif:{name}"));
|
|
|
|
}
|
|
|
|
}
|
2022-12-14 12:30:46 -06:00
|
|
|
cmd.current_dir(ABI_CAFE.source_dir(dirs));
|
2022-10-23 09:22:55 -05:00
|
|
|
|
|
|
|
spawn_and_wait(cmd);
|
|
|
|
}
|