mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
soc/integration/cpu_interface: use riscv64 toolchain instead of riscv32 (prebuild toolchain for windows can be found at http://gnutoolchains.com/)
This commit is contained in:
parent
66229c8c05
commit
6854c7f5fc
1 changed files with 3 additions and 3 deletions
|
@ -34,13 +34,13 @@ def get_cpu_mak(cpu):
|
|||
triple = "or1k-linux"
|
||||
cpuflags += "-mffl1 -maddc"
|
||||
elif cpu == "picorv32":
|
||||
assert not clang, "riscv32 not supported with clang."
|
||||
triple = "riscv32-unknown-elf"
|
||||
assert not clang, "picorv32 not supported with clang."
|
||||
triple = "riscv64-unknown-elf"
|
||||
cpuflags = "-D__picorv32__ -mno-save-restore -march=rv32im -mabi=ilp32"
|
||||
clang = False
|
||||
elif cpu == "vexriscv":
|
||||
assert not clang, "vexrisv not supported with clang."
|
||||
triple = "riscv32-unknown-elf"
|
||||
triple = "riscv64-unknown-elf"
|
||||
cpuflags = "-D__vexriscv__ -march=rv32im -mabi=ilp32"
|
||||
clang = False
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue