Merge pull request #585 from FFY00/more-gcc

cpu: add a few missing GCC toolchains
This commit is contained in:
Tim Ansell 2020-07-09 09:34:22 -07:00 committed by GitHub
commit 0eb1f88bb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -35,15 +35,20 @@ class CPUNone(CPU):
CPU_GCC_TRIPLE_RISCV32 = (
"riscv64-unknown-elf",
"riscv32-unknown-elf",
"riscv64-elf",
"riscv32-elf",
"riscv-none-embed",
"riscv64-linux",
"riscv64-linux-gnu-gcc",
"riscv-sifive-elf",
"riscv64-none-elf",
)
CPU_GCC_TRIPLE_RISCV64 = (
"riscv64-unknown-elf",
"riscv64-elf",
"riscv64-linux",
"riscv64-linux-gnu-gcc",
"riscv-sifive-elf",
"riscv64-none-elf",
)