build: add hint when PYO3_PRINT_CONFIG is set

This commit is contained in:
David Hewitt 2022-04-12 07:54:23 +01:00
parent 3b45170824
commit b35fed00d7

View file

@ -111,6 +111,7 @@ fn print_config_and_exit(config: &InterpreterConfig) {
config
.to_writer(&mut std::io::stdout())
.expect("failed to print config to stdout");
println!("\nnote: unset the PYO3_PRINT_CONFIG environment variable and retry to compile with the above config");
std::process::exit(101);
}