-
Notifications
You must be signed in to change notification settings - Fork 257
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SIGILL #241
Comments
Please provide more details about how you install KFR, exact commands, compiler version etc. |
Sorry. I downloaded with vcpkg on manifest mode (I'll provide the json later). I'm using the latest clion and the embedded compiler inside ( I think mingw 11 with gcc 13). I'm also using cmake |
What triplet did you use for vcpkg? You can see it the |
It's x64-windows |
x64-windows is a MSVC triplet. It isn't binary-compatible with MinGW builds. As of now, MinGW is no longer officially supported. |
Oof, what should I do then? |
okay, changed compiler to msvc (build tools 2022) but i still get an exception, 0xc0000005. Any help? |
When im trying to run my program with this library, gdb says illigal instruction. Any ideas? These is the code i have so far
kfr::audio_reader_wav<float> reader(kfr::open_file_for_reading("audio.wav")); const kfr::univector2d<float> audio = reader.read_channels(); kfr::univector<float> signal = audio[0]; int samperate = reader.format().samplerate;
Im using kfr via vcpkg(6.0.2) and im using a windows 11. Any ideas?
The text was updated successfully, but these errors were encountered: