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
A confusing error, but with a bit of web searching, I figured out that I can reproduce the error if I don't have a C++ compiler installed. So the solution is to install a C++ compiler. E.g. "apt install g++" or equivalent.
The normal way to debug a configure problem like this is to look for the relevant error in the config.log file. Depending on how far configure got, there may be more than one config.log file, so make sure you are looking at the one in the right directory, which in this case would be the one in the gcc subdir. Then look for the "uint64_t or int64_t not found" error and work your way backwards. I expect you will see errors for a missing C++ compiler.
Hello all,
I've the following issue during my first build for the riscv toolchain:
configure: error: uint64_t and int64_t not found
Makefile:4203: receipe for target 'configure-gcc' failed.
My current used directory is the cloned riscv-gnu-toolchain and using the ./configure --prefix=/any_install_path then make.
So how to solve that error ?.
The text was updated successfully, but these errors were encountered: