[go: up one dir, main page]

packed_simd_2 0.3.6

Portable Packed SIMD vectors
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::os::unix::prelude::*;
use std::process::Command;
use std::env;

fn main() {
    let args = env::args()
        .skip(1)
        .filter(|s| s != "--strip-debug")
        .collect::<Vec<_>>();
    panic!("failed to exec: {}", Command::new("rust-lld").args(&args).exec());
}