I use the 11.1.0 version of the riscv64-unknown-elf-gcc tool to compile the c code, and now there is a need to turn off RVC, how do I do this?
gccrv64e -march=rv64imafd arch-fib.c -o arch-fib
I tried to block RVC using the following command, but failed. The disassembly result still has RVC instructions.
Is there any way I can remove RVC during the compilation process?