ripgrep 0.7.1

Line oriented search tool using Rust's regex library. Combines the raw performance of grep with the usability of the silver searcher.
1
2
3
4
5
6
7
8
#!/bin/sh

# export RUSTFLAGS="-C target-feature=+ssse3"
# cargo build --release --features 'simd-accel'

export RUSTFLAGS="-C target-cpu=native"
cargo build --release --features 'simd-accel avx-accel'
# cargo build --release --features 'simd-accel avx-accel' --target x86_64-unknown-linux-musl