File: build.rs

package info (click to toggle)
rust-packed-simd 0.3.8-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,292 kB
  • sloc: makefile: 8
file content (6 lines) | stat: -rw-r--r-- 195 bytes parent folder | download | duplicates (10)
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");
    }
}