This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 665d608e682c6eb9d5395b8c5bc430c7311c5552 Author: simbit18 <101105604+simbi...@users.noreply.github.com> AuthorDate: Tue Jul 15 15:02:49 2025 +0200 ci/platforms/linux.sh: bump risc-v toolchain Bump xPack GNU RISC-V Embedded GCC v14.2.0-3 --- tools/ci/platforms/linux.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/ci/platforms/linux.sh b/tools/ci/platforms/linux.sh index 9021203abf4..9a119f9dbe5 100755 --- a/tools/ci/platforms/linux.sh +++ b/tools/ci/platforms/linux.sh @@ -163,12 +163,12 @@ riscv_gcc_toolchain() { if [ ! -f "${NUTTXTOOLS}/riscv-none-elf-gcc/bin/riscv-none-elf-gcc" ]; then local basefile - basefile=xpack-riscv-none-elf-gcc-13.2.0-2-linux-x64 + basefile=xpack-riscv-none-elf-gcc-14.2.0-3-linux-x64 cd "${NUTTXTOOLS}" # Download the latest RISCV GCC toolchain prebuilt by xPack - wget --quiet https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/releases/download/v13.2.0-2/${basefile}.tar.gz + wget --quiet https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/releases/download/v14.2.0-3/${basefile}.tar.gz tar zxf ${basefile}.tar.gz - mv xpack-riscv-none-elf-gcc-13.2.0-2 riscv-none-elf-gcc + mv xpack-riscv-none-elf-gcc-14.2.0-3 riscv-none-elf-gcc rm ${basefile}.tar.gz fi command riscv-none-elf-gcc --version