1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-05-09 03:26:16 +02:00
BLAKE3/tools/compiler_version/src/main.rs
2020-05-13 18:45:39 -04:00

28 lines
802 B
Rust

use std::process::Command;
fn main() {
// Print the rustc version.
Command::new(env!("CARGO"))
.args(&["rustc", "--quiet", "--", "--version"])
.status()
.unwrap();
println!();
// Print the Cargo version.
Command::new(env!("CARGO"))
.args(&["--version"])
.status()
.unwrap();
println!();
// Print the C compiler version. This relies on C compiler detection done
// in build.rs, which sets the COMPILER_PATH variable.
let compiler_path = env!("COMPILER_PATH");
let mut compiler_command = Command::new(compiler_path);
// Use the --version flag on everything other than MSVC.
if !cfg!(target_env = "msvc") {
compiler_command.arg("--version");
}
let _ = compiler_command.status().unwrap();
}