Improve error message when cargo build
is used to build the compiler
This commit is contained in:
parent
88189a71e4
commit
6468d44c37
16
compiler/rustc_macros/build.rs
Normal file
16
compiler/rustc_macros/build.rs
Normal file
@ -0,0 +1,16 @@
|
||||
fn main() {
|
||||
println!("cargo:rerun-if-changed=build.rs");
|
||||
println!("cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP");
|
||||
if !std::env::var("RUSTC_BOOTSTRAP").is_ok() {
|
||||
eprintln!(
|
||||
"error: you are attempting to build the compiler without going through bootstrap"
|
||||
);
|
||||
eprintln!(
|
||||
"help: see https://rustc-dev-guide.rust-lang.org/building/how-to-build-and-run.html for how to build the compiler"
|
||||
);
|
||||
eprintln!(
|
||||
"help: if you know what you're doing, set the RUSTC_BOOTSTRAP environment variable to any value"
|
||||
);
|
||||
panic!("wrong command used for building");
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user