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 3ff603fc520e1a9b9967c63e18be19ae1b95db0d
Author: simbit18 <101105604+simbi...@users.noreply.github.com>
AuthorDate: Tue Jul 15 15:10:59 2025 +0200

    ci/platforms/windows.ps1: bump risc-v toolchain
    
    Bump xPack GNU RISC-V Embedded GCC v14.2.0-3
---
 tools/ci/platforms/windows.ps1 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tools/ci/platforms/windows.ps1 b/tools/ci/platforms/windows.ps1
index 26f1af872eb..f53a9e79dc1 100644
--- a/tools/ci/platforms/windows.ps1
+++ b/tools/ci/platforms/windows.ps1
@@ -231,12 +231,12 @@ function riscv_gcc_toolchain() {
       add_path "$NUTTXTOOLS\riscv-none-elf-gcc\bin"
       if (-not (Test-Path -Path 
"$NUTTXTOOLS\riscv-none-elf-gcc\bin\riscv-none-elf-gcc.exe")) {
         Write-Host "Download: RISCV GCC toolchain" -ForegroundColor Green
-        $basefile = "xpack-riscv-none-elf-gcc-13.2.0-2-win32-x64"
+        $basefile = "xpack-riscv-none-elf-gcc-14.2.0-3-win32-x64"
         Set-Location "$NUTTXTOOLS"
         # Download the latest RISCV GCC toolchain prebuilt by xPack
-        Invoke-WebRequest -Uri 
"https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/releases/download/v13.2.0-2/$basefile.zip";
 -OutFile "$NUTTXTOOLS\$basefile.zip" -ErrorAction Stop
+        Invoke-WebRequest -Uri 
"https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/releases/download/v14.2.0-3/$basefile.zip";
 -OutFile "$NUTTXTOOLS\$basefile.zip" -ErrorAction Stop
         Expand-Archive "$NUTTXTOOLS\$basefile.zip"
-        Move-Item -Path "$basefile\xpack-riscv-none-elf-gcc-13.2.0-2" 
-Destination "riscv-none-elf-gcc"
+        Move-Item -Path "$basefile\xpack-riscv-none-elf-gcc-14.2.0-3" 
-Destination "riscv-none-elf-gcc"
         Remove-Item "$basefile*" -Force
       }
     }

Reply via email to