Hello,
I am trying to compile my Rust project which uses crate ring v0.17.8, but I keep encountering an error stating gcc.exe is not found, even after installing GCC and checking the PATH. Here's the complete error message:
The following warnings were emitted during compilation:
error: failed to run custom build command for ring v0.17.8 warning: ring@0.17.8: Compiler family detection failed due to error: ToolNotFound: Failed to find tool. Is
gcc.exe` installed?
I have installed GCC through MinGW and verified that I can access gcc.exe from the command line (when I type gcc --version, I get the expected output). I also checked and confirmed that my system's PATH includes the path to the directory containing gcc.exe.
Despite this, I still encounter the same issue when building the project. I've tried cleaning the project and building again, but that did not solve the issue.
Suggestions on how I can resolve this would be greatly appreciated. Thanks!