7 lines
167 B
Rust
7 lines
167 B
Rust
extern crate version_check as rustc;
|
|
|
|
fn main() {
|
|
if rustc::is_min_version("1.78.0").unwrap_or(false) {
|
|
println!("cargo:rustc-cfg=stdsimd_split");
|
|
}
|
|
}
|