2022-01-09 12:30:07 -06:00
|
|
|
use std::env;
|
2022-12-01 11:42:29 -06:00
|
|
|
use std::path::PathBuf;
|
2022-01-09 12:30:07 -06:00
|
|
|
use std::process;
|
|
|
|
|
2023-01-13 06:16:11 -06:00
|
|
|
use self::utils::{is_ci, Compiler};
|
2022-08-05 07:57:19 -05:00
|
|
|
|
2022-09-26 06:56:18 -05:00
|
|
|
mod abi_cafe;
|
2023-01-05 11:57:35 -06:00
|
|
|
mod bench;
|
2022-01-09 12:30:07 -06:00
|
|
|
mod build_backend;
|
|
|
|
mod build_sysroot;
|
|
|
|
mod config;
|
2022-12-01 07:30:03 -06:00
|
|
|
mod path;
|
2022-01-09 12:30:07 -06:00
|
|
|
mod prepare;
|
|
|
|
mod rustc_info;
|
2022-07-30 04:32:54 -05:00
|
|
|
mod tests;
|
2022-07-31 05:15:56 -05:00
|
|
|
mod utils;
|
2022-01-09 12:30:07 -06:00
|
|
|
|
|
|
|
fn usage() {
|
2023-01-13 10:34:43 -06:00
|
|
|
eprintln!("{}", include_str!("usage.txt"));
|
2022-01-09 12:30:07 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! arg_error {
|
|
|
|
($($err:tt)*) => {{
|
|
|
|
eprintln!($($err)*);
|
|
|
|
usage();
|
|
|
|
std::process::exit(1);
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
2022-07-30 04:32:54 -05:00
|
|
|
#[derive(PartialEq, Debug)]
|
2022-01-09 12:30:07 -06:00
|
|
|
enum Command {
|
2022-12-01 11:42:29 -06:00
|
|
|
Prepare,
|
2022-01-09 12:30:07 -06:00
|
|
|
Build,
|
2022-07-30 04:32:54 -05:00
|
|
|
Test,
|
2023-01-05 11:57:35 -06:00
|
|
|
Bench,
|
2022-01-09 12:30:07 -06:00
|
|
|
}
|
|
|
|
|
2022-07-30 04:32:54 -05:00
|
|
|
#[derive(Copy, Clone, Debug)]
|
2022-01-09 12:30:07 -06:00
|
|
|
pub(crate) enum SysrootKind {
|
|
|
|
None,
|
|
|
|
Clif,
|
|
|
|
Llvm,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
2022-12-15 08:12:46 -06:00
|
|
|
if env::var("RUST_BACKTRACE").is_err() {
|
|
|
|
env::set_var("RUST_BACKTRACE", "1");
|
|
|
|
}
|
2022-01-09 12:30:07 -06:00
|
|
|
env::set_var("CG_CLIF_DISABLE_INCR_CACHE", "1");
|
2022-11-28 09:15:40 -06:00
|
|
|
|
2022-08-05 07:57:19 -05:00
|
|
|
if is_ci() {
|
|
|
|
// Disabling incr comp reduces cache size and incr comp doesn't save as much on CI anyway
|
|
|
|
env::set_var("CARGO_BUILD_INCREMENTAL", "false");
|
2022-12-15 08:12:46 -06:00
|
|
|
|
|
|
|
// Enable the Cranelift verifier
|
|
|
|
env::set_var("CG_CLIF_ENABLE_VERIFIER", "1");
|
2022-08-05 07:57:19 -05:00
|
|
|
}
|
|
|
|
|
2022-01-09 12:30:07 -06:00
|
|
|
let mut args = env::args().skip(1);
|
|
|
|
let command = match args.next().as_deref() {
|
2022-12-01 11:42:29 -06:00
|
|
|
Some("prepare") => Command::Prepare,
|
2022-01-09 12:30:07 -06:00
|
|
|
Some("build") => Command::Build,
|
2022-07-30 04:32:54 -05:00
|
|
|
Some("test") => Command::Test,
|
2023-01-05 11:57:35 -06:00
|
|
|
Some("bench") => Command::Bench,
|
2022-01-09 12:30:07 -06:00
|
|
|
Some(flag) if flag.starts_with('-') => arg_error!("Expected command found flag {}", flag),
|
|
|
|
Some(command) => arg_error!("Unknown command {}", command),
|
|
|
|
None => {
|
|
|
|
usage();
|
|
|
|
process::exit(0);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-12-01 11:42:29 -06:00
|
|
|
let mut out_dir = PathBuf::from(".");
|
2022-01-09 12:30:07 -06:00
|
|
|
let mut channel = "release";
|
|
|
|
let mut sysroot_kind = SysrootKind::Clif;
|
|
|
|
let mut use_unstable_features = true;
|
|
|
|
while let Some(arg) = args.next().as_deref() {
|
|
|
|
match arg {
|
2022-12-01 11:42:29 -06:00
|
|
|
"--out-dir" => {
|
|
|
|
out_dir = PathBuf::from(args.next().unwrap_or_else(|| {
|
|
|
|
arg_error!("--out-dir requires argument");
|
|
|
|
}))
|
|
|
|
}
|
2022-01-09 12:30:07 -06:00
|
|
|
"--debug" => channel = "debug",
|
|
|
|
"--sysroot" => {
|
|
|
|
sysroot_kind = match args.next().as_deref() {
|
|
|
|
Some("none") => SysrootKind::None,
|
|
|
|
Some("clif") => SysrootKind::Clif,
|
|
|
|
Some("llvm") => SysrootKind::Llvm,
|
|
|
|
Some(arg) => arg_error!("Unknown sysroot kind {}", arg),
|
|
|
|
None => arg_error!("--sysroot requires argument"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"--no-unstable-features" => use_unstable_features = false,
|
|
|
|
flag if flag.starts_with("-") => arg_error!("Unknown flag {}", flag),
|
|
|
|
arg => arg_error!("Unexpected argument {}", arg),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-13 06:16:11 -06:00
|
|
|
let host_compiler = Compiler::llvm_with_triple(
|
|
|
|
std::env::var("HOST_TRIPLE")
|
|
|
|
.ok()
|
|
|
|
.or_else(|| config::get_value("host"))
|
|
|
|
.unwrap_or_else(|| rustc_info::get_host_triple()),
|
|
|
|
);
|
|
|
|
let target_triple = std::env::var("TARGET_TRIPLE")
|
|
|
|
.ok()
|
|
|
|
.or_else(|| config::get_value("target"))
|
|
|
|
.unwrap_or_else(|| host_compiler.triple.clone());
|
2022-07-30 17:04:59 -05:00
|
|
|
|
2022-12-01 11:42:29 -06:00
|
|
|
// FIXME allow changing the location of these dirs using cli arguments
|
|
|
|
let current_dir = std::env::current_dir().unwrap();
|
|
|
|
out_dir = current_dir.join(out_dir);
|
|
|
|
let dirs = path::Dirs {
|
|
|
|
source_dir: current_dir.clone(),
|
|
|
|
download_dir: out_dir.join("download"),
|
|
|
|
build_dir: out_dir.join("build"),
|
|
|
|
dist_dir: out_dir.join("dist"),
|
|
|
|
};
|
|
|
|
|
|
|
|
path::RelPath::BUILD.ensure_exists(&dirs);
|
|
|
|
|
|
|
|
{
|
|
|
|
// Make sure we always explicitly specify the target dir
|
|
|
|
let target =
|
|
|
|
path::RelPath::BUILD.join("target_dir_should_be_set_explicitly").to_path(&dirs);
|
|
|
|
env::set_var("CARGO_TARGET_DIR", &target);
|
|
|
|
let _ = std::fs::remove_file(&target);
|
|
|
|
std::fs::File::create(target).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
if command == Command::Prepare {
|
|
|
|
prepare::prepare(&dirs);
|
|
|
|
process::exit(0);
|
|
|
|
}
|
|
|
|
|
2022-12-01 08:54:37 -06:00
|
|
|
let cg_clif_dylib =
|
2023-01-13 06:16:11 -06:00
|
|
|
build_backend::build_backend(&dirs, channel, &host_compiler, use_unstable_features);
|
2022-07-30 06:50:05 -05:00
|
|
|
match command {
|
2022-12-01 11:42:29 -06:00
|
|
|
Command::Prepare => {
|
|
|
|
// Handled above
|
|
|
|
}
|
2022-07-30 06:50:05 -05:00
|
|
|
Command::Test => {
|
2022-12-01 08:54:37 -06:00
|
|
|
tests::run_tests(
|
|
|
|
&dirs,
|
|
|
|
channel,
|
|
|
|
sysroot_kind,
|
|
|
|
&cg_clif_dylib,
|
2023-01-13 06:16:11 -06:00
|
|
|
&host_compiler,
|
2022-12-01 08:54:37 -06:00
|
|
|
&target_triple,
|
|
|
|
);
|
2022-08-06 15:24:38 -05:00
|
|
|
|
2023-01-13 06:16:11 -06:00
|
|
|
if host_compiler.triple == target_triple {
|
|
|
|
abi_cafe::run(channel, sysroot_kind, &dirs, &cg_clif_dylib, &host_compiler);
|
|
|
|
} else {
|
|
|
|
eprintln!("[SKIP] abi-cafe (cross-compilation not supported)");
|
|
|
|
return;
|
|
|
|
}
|
2022-07-30 06:50:05 -05:00
|
|
|
}
|
2022-08-06 15:24:38 -05:00
|
|
|
Command::Build => {
|
|
|
|
build_sysroot::build_sysroot(
|
2022-12-01 08:54:37 -06:00
|
|
|
&dirs,
|
2022-08-06 07:34:55 -05:00
|
|
|
channel,
|
|
|
|
sysroot_kind,
|
2022-08-28 11:46:09 -05:00
|
|
|
&cg_clif_dylib,
|
2023-01-13 06:16:11 -06:00
|
|
|
&host_compiler,
|
2022-08-06 07:34:55 -05:00
|
|
|
&target_triple,
|
|
|
|
);
|
|
|
|
}
|
2023-01-05 11:57:35 -06:00
|
|
|
Command::Bench => {
|
|
|
|
build_sysroot::build_sysroot(
|
|
|
|
&dirs,
|
|
|
|
channel,
|
|
|
|
sysroot_kind,
|
|
|
|
&cg_clif_dylib,
|
2023-01-13 06:16:11 -06:00
|
|
|
&host_compiler,
|
2023-01-05 11:57:35 -06:00
|
|
|
&target_triple,
|
|
|
|
);
|
2023-01-13 06:16:11 -06:00
|
|
|
bench::benchmark(&dirs, &host_compiler);
|
2023-01-05 11:57:35 -06:00
|
|
|
}
|
2022-07-30 04:32:54 -05:00
|
|
|
}
|
2022-01-09 12:30:07 -06:00
|
|
|
}
|