Merge pull request #585 from FFY00/more-gcc
cpu: add a few missing GCC toolchains
This commit is contained in:
commit
0eb1f88bb4
|
@ -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",
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue