make[1]: riscv64-unknown-elf-gcc: Command not found
which means the make command tries to find 64-bit GNU toolchain which I don't have. My work requires to build only 32-bit RISC-V, so how to have the make lend itself to my existing 32-bit GNU toolchain? Thanks.
I have only built 32-bit RISC-V GNU toolchain. Below are the contents in
$RISCV/bin
:But when I run
make
of "Building from repository", I got the following errorwhich means the
make
command tries to find 64-bit GNU toolchain which I don't have. My work requires to build only 32-bit RISC-V, so how to have themake
lend itself to my existing 32-bit GNU toolchain? Thanks.