mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-08 21:31:32 +00:00
11 lines
232 B
Rust
11 lines
232 B
Rust
#![allow(unexpected_cfgs)]
|
|
|
|
#[path = "../../configure.rs"]
|
|
mod configure;
|
|
|
|
fn main() {
|
|
println!("cargo:rerun-if-changed=../../configure.rs");
|
|
let cfg = configure::Config::from_env();
|
|
configure::emit_libm_config(&cfg);
|
|
}
|