You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the "setenv.bat" script where toolchain paths are added to the PATH environment variable: set PATH=%MAXIM_SBT_DIR%\bin;%TOOLCHAIN_PATH%\GNUTools\10.3\bin;%TOOLCHAIN_PATH%\xPack\riscv-none-elf-gcc\12.2.0-3.1\bin:%TOOLCHAIN_PATH%\xPack\riscv-none-embed-gcc\10.2.0-1.2\bin;%TOOLCHAIN_PATH%\MSYS2\usr\bin;%TOOLCHAIN_PATH%\OpenOCD;%PATH%
There is a typo between %TOOLCHAIN_PATH%\xPack\riscv-none-elf-gcc\12.2.0-3.1\bin and %TOOLCHAIN_PATH%\xPack\riscv-none-embed-gcc\10.2.0-1.2\bin entries (there should be a semicolon instead of a colon). This causes a wrong path to set for riscv-none-embed-gcc toolchain.
The text was updated successfully, but these errors were encountered:
In the "setenv.bat" script where toolchain paths are added to the PATH environment variable:
set PATH=%MAXIM_SBT_DIR%\bin;%TOOLCHAIN_PATH%\GNUTools\10.3\bin;%TOOLCHAIN_PATH%\xPack\riscv-none-elf-gcc\12.2.0-3.1\bin:%TOOLCHAIN_PATH%\xPack\riscv-none-embed-gcc\10.2.0-1.2\bin;%TOOLCHAIN_PATH%\MSYS2\usr\bin;%TOOLCHAIN_PATH%\OpenOCD;%PATH%
There is a typo between
%TOOLCHAIN_PATH%\xPack\riscv-none-elf-gcc\12.2.0-3.1\bin
and%TOOLCHAIN_PATH%\xPack\riscv-none-embed-gcc\10.2.0-1.2\bin
entries (there should be a semicolon instead of a colon). This causes a wrong path to set for riscv-none-embed-gcc toolchain.The text was updated successfully, but these errors were encountered: