Add riscv64-none-elf triple
This commit is contained in:
parent
14bf8b8190
commit
d69b4443b3
|
@ -48,7 +48,8 @@ class BlackParrotRV64(CPU):
|
||||||
name = "blackparrot"
|
name = "blackparrot"
|
||||||
data_width = 64
|
data_width = 64
|
||||||
endianness = "little"
|
endianness = "little"
|
||||||
gcc_triple = ("riscv64-unknown-elf", "riscv64-linux", "riscv-sifive-elf")
|
gcc_triple = ("riscv64-unknown-elf", "riscv64-linux", "riscv-sifive-elf",
|
||||||
|
"riscv64-none-elf")
|
||||||
linker_output_format = "elf64-littleriscv"
|
linker_output_format = "elf64-littleriscv"
|
||||||
io_regions = {0x30000000: 0x20000000} # origin, length
|
io_regions = {0x30000000: 0x20000000} # origin, length
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ class Minerva(CPU):
|
||||||
data_width = 32
|
data_width = 32
|
||||||
endianness = "little"
|
endianness = "little"
|
||||||
gcc_triple = ("riscv64-unknown-elf", "riscv32-unknown-elf", "riscv-none-embed",
|
gcc_triple = ("riscv64-unknown-elf", "riscv32-unknown-elf", "riscv-none-embed",
|
||||||
"riscv64-linux", "riscv-sifive-elf")
|
"riscv64-linux", "riscv-sifive-elf", "riscv64-none-elf")
|
||||||
linker_output_format = "elf32-littleriscv"
|
linker_output_format = "elf32-littleriscv"
|
||||||
io_regions = {0x80000000: 0x80000000} # origin, length
|
io_regions = {0x80000000: 0x80000000} # origin, length
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@ class PicoRV32(CPU):
|
||||||
data_width = 32
|
data_width = 32
|
||||||
endianness = "little"
|
endianness = "little"
|
||||||
gcc_triple = ("riscv64-unknown-elf", "riscv32-unknown-elf", "riscv-none-embed",
|
gcc_triple = ("riscv64-unknown-elf", "riscv32-unknown-elf", "riscv-none-embed",
|
||||||
"riscv64-linux", "riscv-sifive-elf")
|
"riscv64-linux", "riscv-sifive-elf", "riscv64-none-elf")
|
||||||
linker_output_format = "elf32-littleriscv"
|
linker_output_format = "elf32-littleriscv"
|
||||||
io_regions = {0x80000000: 0x80000000} # origin, length
|
io_regions = {0x80000000: 0x80000000} # origin, length
|
||||||
|
|
||||||
|
|
|
@ -67,7 +67,8 @@ class RocketRV64(CPU):
|
||||||
name = "rocket"
|
name = "rocket"
|
||||||
data_width = 64
|
data_width = 64
|
||||||
endianness = "little"
|
endianness = "little"
|
||||||
gcc_triple = ("riscv64-unknown-elf", "riscv64-linux", "riscv-sifive-elf")
|
gcc_triple = ("riscv64-unknown-elf", "riscv64-linux", "riscv-sifive-elf",
|
||||||
|
"riscv64-none-elf")
|
||||||
linker_output_format = "elf64-littleriscv"
|
linker_output_format = "elf64-littleriscv"
|
||||||
io_regions = {0x10000000: 0x70000000} # origin, length
|
io_regions = {0x10000000: 0x70000000} # origin, length
|
||||||
|
|
||||||
|
|
|
@ -78,7 +78,7 @@ class VexRiscv(CPU, AutoCSR):
|
||||||
data_width = 32
|
data_width = 32
|
||||||
endianness = "little"
|
endianness = "little"
|
||||||
gcc_triple = ("riscv64-unknown-elf", "riscv32-unknown-elf", "riscv-none-embed",
|
gcc_triple = ("riscv64-unknown-elf", "riscv32-unknown-elf", "riscv-none-embed",
|
||||||
"riscv64-linux", "riscv-sifive-elf")
|
"riscv64-linux", "riscv-sifive-elf", "riscv64-none-elf")
|
||||||
linker_output_format = "elf32-littleriscv"
|
linker_output_format = "elf32-littleriscv"
|
||||||
io_regions = {0x80000000: 0x80000000} # origin, length
|
io_regions = {0x80000000: 0x80000000} # origin, length
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue