mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-04 11:17:04 +00:00

Distribute everything from `libm/` to better locations in the repo. `libm/libm/*` has not moved yet to avoid Git seeing the move as an edit to `Cargo.toml`. Files that remain to be merged somehow are in `etc/libm`.
11 lines
242 B
Rust
11 lines
242 B
Rust
#![allow(unexpected_cfgs)]
|
|
|
|
#[path = "../../libm/configure.rs"]
|
|
mod configure;
|
|
|
|
fn main() {
|
|
println!("cargo:rerun-if-changed=../../libm/configure.rs");
|
|
let cfg = configure::Config::from_env();
|
|
configure::emit_libm_config(&cfg);
|
|
}
|