mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 10:38:20 +00:00
19 lines
557 B
Rust
19 lines
557 B
Rust
|
use std::env;
|
||
|
use std::fs;
|
||
|
use std::path::PathBuf;
|
||
|
use std::process::Command;
|
||
|
|
||
|
fn main() {
|
||
|
let mut out = PathBuf::from(env::var_os("OUT_DIR").expect("OUT_DIR"));
|
||
|
out.push("rustc-version");
|
||
|
let rustc = env::var_os("RUSTC").expect("RUSTC");
|
||
|
let rustc_output = Command::new(rustc)
|
||
|
.arg("--version")
|
||
|
.output()
|
||
|
.expect("rustc --version");
|
||
|
if !rustc_output.status.success() {
|
||
|
panic!("rustc --version: exit status {}", rustc_output.status);
|
||
|
}
|
||
|
fs::write(&out, rustc_output.stdout).expect("file write");
|
||
|
}
|