kfrlib / kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
https://www.kfrlib.com
GNU General Public License v2.0
1.62k stars 248 forks source link

Building with clang-10 leads to warnings #198

Closed Wishmaster-de closed 8 months ago

Wishmaster-de commented 8 months ago

Building with clang-10 leads to warnings because of option '-Wno-psabi' in CMakeLists.txt It seems that it will work with clang version > 10.

dancazarin commented 8 months ago

It makes sense to just suppress warnings about suppressing unknown warnings with -Wno-unknown-warning-option. Because if the warning is unknown to compiler then it will never be generated, this is exactly what we want. It will be implemented in the next release.

dancazarin commented 8 months ago

Done in dev branch