From d6ce5d3afad839e3517039bc4fbcd762157a89a7 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 26 Oct 2021 11:58:09 +0200 Subject: [PATCH] litex_setup: Fix missing repos. --- litex_setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/litex_setup.py b/litex_setup.py index 1e4ce552a..6a724c48e 100755 --- a/litex_setup.py +++ b/litex_setup.py @@ -27,6 +27,11 @@ git_repos = { "migen": GitRepo(url="https://github.com/m-labs/", clone="recursive"), "nmigen": GitRepo(url="https://github.com/nmigen/", clone="recursive"), + # LiteX SoC builder + "pythondata-software-picolibc": GitRepo(url="https://github.com/litex-hub/", clone="recursive"), + "pythondata-software-compiler_rt": GitRepo(url="https://github.com/litex-hub/"), + "litex": GitRepo(url="https://github.com/enjoy-digital/"), + # LiteX Cores Ecosystem. "liteeth": GitRepo(url="https://github.com/enjoy-digital/"), "litedram": GitRepo(url="https://github.com/enjoy-digital/"), @@ -224,7 +229,7 @@ if "install" in sys.argv[1:]: if "gcc" in sys.argv[1:]: os.chdir(os.path.join(current_path)) - sifive_riscv_download() + riscv_gcc_toolchain_download() if "riscv64" not in os.environ.get("PATH", ""): print("Make sure that the downloaded RISC-V compiler is in your $PATH.") print("export PATH=$PATH:$(echo $PWD/riscv64-*/bin/)")