mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-28 03:24:11 +00:00
In preparation for switching to a virtual manifest, move the `libm` crate into a subdirectory and update paths to match. Updating `Cargo.toml` is done in the next commit so git tracks the moved file correctly.
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);
|
|
}
|