Experimenting with RISC-V
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
313 B

  1. # Define toolchain to use
  2. ARCH := riscv64
  3. VENDOR := unknown
  4. ABI := elf
  5. BIN_DIR := #/usr/local/bin/
  6. TOOLCHAIN := $(BIN_DIR)$(ARCH)-$(VENDOR)-$(ABI)
  7. # Defines compiler and tools to use
  8. AR := $(TOOLCHAIN)-ar
  9. AS := $(TOOLCHAIN)-as
  10. CC := $(TOOLCHAIN)-gcc
  11. STRIP := $(TOOLCHAIN)-strip
  12. GDB := $(TOOLCHAIN)-gdb