packed_simd_2 0.3.8

Portable Packed SIMD vectors
Documentation
1
2
3
4
5
6
fn main() {
    let target = std::env::var("TARGET").expect("TARGET environment variable not defined");
    if target.contains("neon") {
        println!("cargo:rustc-cfg=libcore_neon");
    }
}