Merge pull request #1738 from trabucayre/fix_toolchain

litex_setup: fix software build when liteeth or/and litesata is set (riscv toolchain issue)
This commit is contained in:
enjoy-digital 2023-07-31 08:57:52 +02:00 committed by GitHub
commit b8dc1b7757
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -350,7 +350,7 @@ def riscv_gcc_install():
os.system("pacman -S riscv64-linux-gnu-gcc") os.system("pacman -S riscv64-linux-gnu-gcc")
# Ubuntu. # Ubuntu.
else: else:
os.system("apt install gcc-riscv64-linux-gnu") os.system("apt install gcc-riscv64-unknown-elf")
# Mac OS. # Mac OS.
# ------- # -------