mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-28 03:24:11 +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`.
15 lines
279 B
Rust
15 lines
279 B
Rust
//! `main` is just a wrapper to handle configuration.
|
|
|
|
#[cfg(not(feature = "build-mpfr"))]
|
|
fn main() {
|
|
eprintln!("multiprecision not enabled; skipping extensive tests");
|
|
}
|
|
|
|
#[cfg(feature = "build-mpfr")]
|
|
mod run;
|
|
|
|
#[cfg(feature = "build-mpfr")]
|
|
fn main() {
|
|
run::run();
|
|
}
|