Skip to content

Commit 1f259ce

Browse files
committed
Update to pico-sdk-tools v2.0.0-3
- Update RISC-V toolchain build revision Signed-off-by: paulober <[email protected]>
1 parent 52a3591 commit 1f259ce

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

data/0.16.0/supportedToolchains.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ darwin_arm64 = https://armkeil.blob.core.windows.net/developer/Files/downloads/g
1010
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
1111
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
1212
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
13-
[RISCV_RPI_2_0_0_1]
14-
win32_x64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-1/riscv-toolchain-14-x64-win.zip
15-
darwin_arm64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-1/riscv-toolchain-14-arm64-mac.zip
16-
darwin_x64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-1/riscv-toolchain-14-x64-mac.zip
17-
linux_x64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-1/riscv-toolchain-14-x86_64-lin.tar.gz
18-
linux_arm64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-1/riscv-toolchain-14-aarch64-lin.tar.gz
13+
[RISCV_RPI_2_0_0_3]
14+
win32_x64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-3/riscv-toolchain-14-x64-win.zip
15+
darwin_arm64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-3/riscv-toolchain-14-arm64-mac.zip
16+
darwin_x64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-3/riscv-toolchain-14-x64-mac.zip
17+
linux_x64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-3/riscv-toolchain-14-x86_64-lin.tar.gz
18+
linux_arm64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.0.0-3/riscv-toolchain-14-aarch64-lin.tar.gz
1919
[RISCV_13_3]
2020
win32_x64 = https://buildbot.embecosm.com/job/riscv32-gcc-win64-release/24/artifact/riscv32-embecosm-win64-gcc13.2.0.zip
2121
darwin_arm64 = https://buildbot.embecosm.com/job/riscv32-gcc-macos-arm64-release/10/artifact/riscv32-embecosm-macos-gcc13.3.0.zip

data/0.16.0/versionBundles.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@
3333
"cmake": "v3.28.6",
3434
"picotool": "2.0.0",
3535
"toolchain": "13_2_Rel1",
36-
"riscvToolchain": "RISCV_RPI_2_0_0_1"
36+
"riscvToolchain": "RISCV_RPI_2_0_0_3"
3737
}
3838
}

src/utils/download.mts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,19 @@ const TOOLS_RELEASES: { [key: string]: string } = {
6161
// eslint-disable-next-line @typescript-eslint/naming-convention
6262
"1.5.1": "v1.5.1-0",
6363
// eslint-disable-next-line @typescript-eslint/naming-convention
64-
"2.0.0": "v2.0.0-0",
64+
"2.0.0": "v2.0.0-3",
6565
};
6666

6767
/// Release tags for picotool
6868
const PICOTOOL_RELEASES: { [key: string]: string } = {
6969
// eslint-disable-next-line @typescript-eslint/naming-convention
70-
"2.0.0": "v2.0.0-0",
70+
"2.0.0": "v2.0.0-3",
7171
};
7272

7373
/// Release tags for openocd
7474
const OPENOCD_RELEASES: { [key: string]: string } = {
7575
// eslint-disable-next-line @typescript-eslint/naming-convention
76-
"0.12.0+dev": "v2.0.0-0",
76+
"0.12.0+dev": "v2.0.0-3",
7777
};
7878

7979
/// Translate nodejs platform names to cmake platform names

0 commit comments

Comments
 (0)