mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-19 11:07:32 +00:00

Update paths and submodules to fix `libm-test` and `util` building so we will be able to add them to the workspace.
10 lines
220 B
Rust
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);
|
|
}
|