mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
cpu: add a few missing GCC toolchains
This names are used by Arch Linux for eg. Signed-off-by: Filipe Laíns <lains@archlinux.org>
This commit is contained in:
parent
5ebdfd9307
commit
235e8cf62b
1 changed files with 5 additions and 0 deletions
|
@ -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 a new issue