I have some issues with the built binaries, especially GDB. In the default build I get an illegal instruction exception (SIGILL) when trying to use the simulator from GDB. Seems the binary from the simulator use some x86 AVX instructions which are not available on my very old system.
For non-RISC-V toolchains I pass the options with CFLAGS and CXXFLAGS to the configure script to the build system, where I define -march and -mtune. I have tried to pass the option in the configure script from this repository too, but these flags will be ignored.
I have some issues with the built binaries, especially GDB. In the default build I get an illegal instruction exception (SIGILL) when trying to use the simulator from GDB. Seems the binary from the simulator use some x86 AVX instructions which are not available on my very old system.
For non-RISC-V toolchains I pass the options with
CFLAGSandCXXFLAGSto theconfigurescript to the build system, where I define-marchand-mtune. I have tried to pass the option in theconfigurescript from this repository too, but these flags will be ignored.