You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting two errors when trying to compile a project with this plugin for Linux.
Compile Module.RuntimeSpeechRecognizer.cpp
error: current translation unit is compiled with the target feature '+avx' but the AST file was not
error: current translation unit is compiled with the target feature '+bmi' but the AST file was not
2 errors generated.
I am still investigating a possible solution, but help would be appreciated.
The text was updated successfully, but these errors were encountered:
nicklevergne
changed the title
AST Build Errors on Linux Only
AST Build Errors on Linux
Jan 21, 2025
This is most likely due to instruction sets, your Linux system might not support AVX or other. You can go to RuntimeSpeechRecognizer.Build.cs and change MinCpuArchX64/bUseAVX, and also you may need to modify SpeechRecognizerPrivate.h to remove handling of CPU instruction sets there as well. But keep in mind that this may significantly degrade performance.
I am getting two errors when trying to compile a project with this plugin for Linux.
Compile Module.RuntimeSpeechRecognizer.cpp
error: current translation unit is compiled with the target feature '+avx' but the AST file was not
error: current translation unit is compiled with the target feature '+bmi' but the AST file was not
2 errors generated.
I am still investigating a possible solution, but help would be appreciated.
The text was updated successfully, but these errors were encountered: