rust/library/compiler-builtins/libm-test/build.rs
Trevor Gross cab8700e84 libm: Fix crate compilation
Update paths and submodules to fix `libm-test` and `util` building so we
will be able to add them to the workspace.
2025-04-19 18:23:45 -04:00

10 lines
220 B
Rust

#[path = "../libm/configure.rs"]
mod configure;
use configure::Config;
fn main() {
println!("cargo:rerun-if-changed=../libm/configure.rs");
let cfg = Config::from_env();
configure::emit_test_config(&cfg);
}