From 1a74854e553a96598bb7e9a57db65efbcfac6f17 Mon Sep 17 00:00:00 2001 From: Gwenhael Goavec-Merou Date: Sun, 30 Jul 2023 15:37:51 +0200 Subject: [PATCH] litex_setup: fix software build when liteeth or/and litesata is set (riscv toolchain issue) --- litex_setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex_setup.py b/litex_setup.py index 5956d0668..342dda5a1 100755 --- a/litex_setup.py +++ b/litex_setup.py @@ -350,7 +350,7 @@ def riscv_gcc_install(): os.system("pacman -S riscv64-linux-gnu-gcc") # Ubuntu. else: - os.system("apt install gcc-riscv64-linux-gnu") + os.system("apt install gcc-riscv64-unknown-elf") # Mac OS. # -------