mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
cores/cpu: add riscv-none-embed toolchain support to riscv32 cpus
This commit is contained in:
parent
6d94c07d70
commit
e670cb9176
3 changed files with 3 additions and 3 deletions
|
@ -22,7 +22,7 @@ class Minerva(Module):
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def gcc_triple(self):
|
def gcc_triple(self):
|
||||||
return ("riscv64-unknown-elf", "riscv32-unknown-elf")
|
return ("riscv64-unknown-elf", "riscv32-unknown-elf", "riscv-none-embed")
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def gcc_flags(self):
|
def gcc_flags(self):
|
||||||
|
|
|
@ -40,7 +40,7 @@ class PicoRV32(Module):
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def gcc_triple(self):
|
def gcc_triple(self):
|
||||||
return ("riscv64-unknown-elf", "riscv32-unknown-elf")
|
return ("riscv64-unknown-elf", "riscv32-unknown-elf", "riscv-none-embed")
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def gcc_flags(self):
|
def gcc_flags(self):
|
||||||
|
|
|
@ -84,7 +84,7 @@ class VexRiscv(Module, AutoCSR):
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def gcc_triple(self):
|
def gcc_triple(self):
|
||||||
return ("riscv64-unknown-elf", "riscv32-unknown-elf")
|
return ("riscv64-unknown-elf", "riscv32-unknown-elf", "riscv-none-embed")
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def gcc_flags(self):
|
def gcc_flags(self):
|
||||||
|
|
Loading…
Reference in a new issue