mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-28 03:24:11 +00:00
9 lines
204 B
Rust
9 lines
204 B
Rust
#[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);
|
|
}
|