Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This downloades and installs Litex along the necessary Python modules into the installation directory.


Errors Error handling:
No access to / missing files → Delete files or folder in question and restart the installation
Use the console to start the setup of the package in question manually
Separate the command python   llitex_setup.py init install   into   python llitex_setup.py init   and   python llitex_setup.py install

...

Edit the path variables via copying these commands.

Intel Quartus Prime Lite:
set PATH=%PATH%;C:\IntelFPGA_lite\19.1\quartus\bin64

RISC-V Toolcain
set PATH=%PATH%;C:\users\<your litex installtion folder>\RISCriscv64-V64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-w64-mingw32\bin

Make:
set PATH=%PATH%;c:\IntelFPGA_lite\19.1\nios2eds\bin\gnu\H-x86_64-mingw32\bin


Error handling:
In case of the already existing path variable leading to errors during the build, one can override the PATH variable completely. The following command should be executed, which overrides the PATH variable temporarily and adds Python to it.
set PATH=c:\<Path to your python installation folder>
Issue the path commands above for Intel Quartus Prime Lite, RISC-V Toolcain and Make.

Generate the Litex BIOS demo

...

Options:
To generate only the FPGA design, containing the RISC-v V processor and blinking LEDs, without the software part, the Litex UART BIOS promt.
python c10lprefkit.py --no-compile-software

Generate only the software sources.
python c10lprefkit.py --no-compile-gateware

...