I'm building bindings the the rnnoise c library.
Using cargo build, i get this warning:
warning: rnnoise2-sys@0.1.0: 163 | #warning "Only SSE and SSE2 are available. On newer machines, enable SSSE3/AVX/AVX2 using -march= to get better performance"
When using RUSTFLAGS="-C target-feature=+ssse3,+avx,+avx2" cargo build --release, there is still warning.
When using CFLAGS="-march=native" cargo build --release, no warning
I'm building bindings the the rnnoise c library.
Using cargo build, i get this warning:
warning: rnnoise2-sys@0.1.0: 163 | #warning "Only SSE and SSE2 are available. On newer machines, enable SSSE3/AVX/AVX2 using -march= to get better performance"When using
RUSTFLAGS="-C target-feature=+ssse3,+avx,+avx2" cargo build --release, there is still warning.When using
CFLAGS="-march=native" cargo build --release, no warning