From b88bcd8e876df98d7510de6bdfc62604fb1df44c Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Fri, 3 Jun 2022 14:34:01 +0200 Subject: [PATCH] litex_setup: Bump RISC-V GCC toolchain to 10.1. --- litex_setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litex_setup.py b/litex_setup.py index cac0fe013..dce982ced 100755 --- a/litex_setup.py +++ b/litex_setup.py @@ -321,8 +321,8 @@ def gcc_toolchain_download(url, filename): # ----------------- def riscv_gcc_toolchain_download(): - base_url = "https://static.dev.sifive.com/dev-tools/" - base_file = "riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-" + base_url = "https://static.dev.sifive.com/dev-tools/freedom-tools/v2020.08/" + base_file = "riscv64-unknown-elf-gcc-10.1.0-2020.08.2-x86_64-" # Windows if (sys.platform.startswith("win") or sys.platform.startswith("cygwin")):