From e6441e6ad5a748ae88319205f435957f5648958b Mon Sep 17 00:00:00 2001 From: paulober <44974737+paulober@users.noreply.github.com> Date: Mon, 9 Sep 2024 10:54:30 +0100 Subject: [PATCH] Update to pico-sdk-tools v2.0.0-3 - Update RISC-V toolchain build revision Signed-off-by: paulober <44974737+paulober@users.noreply.github.com> --- data/0.16.0/supportedToolchains.ini | 12 ++++++------ data/0.16.0/versionBundles.json | 2 +- src/utils/download.mts | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/data/0.16.0/supportedToolchains.ini b/data/0.16.0/supportedToolchains.ini index 2d0d153..86c7a42 100644 --- a/data/0.16.0/supportedToolchains.ini +++ b/data/0.16.0/supportedToolchains.ini @@ -10,12 +10,12 @@ darwin_arm64 = https://armkeil.blob.core.windows.net/developer/Files/downloads/g darwin_x64 = https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-darwin-x86_64-arm-none-eabi.tar.xz linux_x64 = https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-x86_64-arm-none-eabi.tar.xz linux_arm64 = https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-aarch64-arm-none-eabi.tar.xz -[RISCV_RPI_2_0_0_1] -win32_x64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-1/riscv-toolchain-14-x64-win.zip -darwin_arm64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-1/riscv-toolchain-14-arm64-mac.zip -darwin_x64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-1/riscv-toolchain-14-x64-mac.zip -linux_x64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-1/riscv-toolchain-14-x86_64-lin.tar.gz -linux_arm64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-1/riscv-toolchain-14-aarch64-lin.tar.gz +[RISCV_RPI_2_0_0_3] +win32_x64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-3/riscv-toolchain-14-x64-win.zip +darwin_arm64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-3/riscv-toolchain-14-arm64-mac.zip +darwin_x64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-3/riscv-toolchain-14-x64-mac.zip +linux_x64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-3/riscv-toolchain-14-x86_64-lin.tar.gz +linux_arm64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-3/riscv-toolchain-14-aarch64-lin.tar.gz [RISCV_13_3] win32_x64 = https://buildbot.embecosm.com/job/riscv32-gcc-win64-release/24/artifact/riscv32-embecosm-win64-gcc13.2.0.zip darwin_arm64 = https://buildbot.embecosm.com/job/riscv32-gcc-macos-arm64-release/10/artifact/riscv32-embecosm-macos-gcc13.3.0.zip diff --git a/data/0.16.0/versionBundles.json b/data/0.16.0/versionBundles.json index 4c84f47..4152b1d 100644 --- a/data/0.16.0/versionBundles.json +++ b/data/0.16.0/versionBundles.json @@ -33,6 +33,6 @@ "cmake": "v3.28.6", "picotool": "2.0.0", "toolchain": "13_2_Rel1", - "riscvToolchain": "RISCV_RPI_2_0_0_1" + "riscvToolchain": "RISCV_RPI_2_0_0_3" } } diff --git a/src/utils/download.mts b/src/utils/download.mts index 4b1c73a..8288281 100644 --- a/src/utils/download.mts +++ b/src/utils/download.mts @@ -61,19 +61,19 @@ const TOOLS_RELEASES: { [key: string]: string } = { // eslint-disable-next-line @typescript-eslint/naming-convention "1.5.1": "v1.5.1-0", // eslint-disable-next-line @typescript-eslint/naming-convention - "2.0.0": "v2.0.0-0", + "2.0.0": "v2.0.0-3", }; /// Release tags for picotool const PICOTOOL_RELEASES: { [key: string]: string } = { // eslint-disable-next-line @typescript-eslint/naming-convention - "2.0.0": "v2.0.0-0", + "2.0.0": "v2.0.0-3", }; /// Release tags for openocd const OPENOCD_RELEASES: { [key: string]: string } = { // eslint-disable-next-line @typescript-eslint/naming-convention - "0.12.0+dev": "v2.0.0-0", + "0.12.0+dev": "v2.0.0-3", }; /// Translate nodejs platform names to cmake platform names