riscv64-elf-gcc

GNU compiler collection for RISC-V 64-bit embedded systems

brewmacoslinux
Try with needOr install directly
Source

About

GNU compiler collection for riscv64-elf

Commands

riscv64-elf-gccriscv64-elf-g++riscv64-elf-gdbriscv64-elf-asriscv64-elf-ldriscv64-elf-objdumpriscv64-elf-objcopyriscv64-elf-arriscv64-elf-nmriscv64-elf-ranlib

Examples

Compile a C source file for RISC-V 64-bit target$ riscv64-elf-gcc -O2 -march=rv64i program.c -o program.elf
Compile and link with custom optimization for embedded systems$ riscv64-elf-gcc -mcmodel=medany -ffunction-sections -fdata-sections firmware.c -o firmware.elf
Debug compiled binary with GDB debugger$ riscv64-elf-gdb program.elf