Skip to content

Commit 10405f1

Browse files
committed
Update to GCC 14.3 rel1
1 parent 7f95cfa commit 10405f1

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.devcontainer/All/Dockerfile.All.SRC

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update \
99

1010
RUN mkdir -p /tmp/dc-downloads /tmp/dc-extracted
1111

12-
ARG GCC_VERSION=14.2.rel1
12+
ARG GCC_VERSION=14.3.rel1
1313
ARG GCC_URI=https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu/$GCC_VERSION/binrel/arm-gnu-toolchain-$GCC_VERSION-x86_64-arm-none-eabi.tar.xz
1414
RUN mkdir -p /tmp/dc-downloads /tmp/dc-extracted/gcc \
1515
&& curl -o /tmp/dc-downloads/gcc-arm.tar.xz $GCC_URI \

.devcontainer/AzureRTOS/Dockerfile.AzureRTOS.SRC

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update \
99

1010
RUN mkdir -p /tmp/dc-downloads /tmp/dc-extracted
1111

12-
ARG GCC_VERSION=14.2.rel1
12+
ARG GCC_VERSION=14.3.rel1
1313
ARG GCC_URI=https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu/$GCC_VERSION/binrel/arm-gnu-toolchain-$GCC_VERSION-x86_64-arm-none-eabi.tar.xz
1414
RUN mkdir -p /tmp/dc-downloads /tmp/dc-extracted/gcc \
1515
&& curl -o /tmp/dc-downloads/gcc-arm.tar.xz $GCC_URI \

.devcontainer/ChibiOS/Dockerfile.ChibiOS.SRC

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update \
99

1010
RUN mkdir -p /tmp/dc-downloads /tmp/dc-extracted
1111

12-
ARG GCC_VERSION=14.2.rel1
12+
ARG GCC_VERSION=14.3.rel1
1313
ARG GCC_URI=https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu/$GCC_VERSION/binrel/arm-gnu-toolchain-$GCC_VERSION-x86_64-arm-none-eabi.tar.xz
1414
RUN mkdir -p /tmp/dc-downloads /tmp/dc-extracted/gcc \
1515
&& curl -o /tmp/dc-downloads/gcc-arm.tar.xz $GCC_URI \

.devcontainer/FreeRTOS-NXP/Dockerfile.FreeRTOS-NXP.SRC

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update \
99

1010
RUN mkdir -p /tmp/dc-downloads /tmp/dc-extracted
1111

12-
ARG GCC_VERSION=14.2.rel1
12+
ARG GCC_VERSION=14.3.rel1
1313
ARG GCC_URI=https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu/$GCC_VERSION/binrel/arm-gnu-toolchain-$GCC_VERSION-x86_64-arm-none-eabi.tar.xz
1414
RUN mkdir -p /tmp/dc-downloads /tmp/dc-extracted/gcc \
1515
&& curl -o /tmp/dc-downloads/gcc-arm.tar.xz $GCC_URI \

.devcontainer/TI/Dockerfile.TI.SRC

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update \
99

1010
RUN mkdir -p /tmp/dc-downloads /tmp/dc-extracted
1111

12-
ARG GCC_VERSION=14.2.rel1
12+
ARG GCC_VERSION=14.3.rel1
1313
ARG GCC_URI=https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu/$GCC_VERSION/binrel/arm-gnu-toolchain-$GCC_VERSION-x86_64-arm-none-eabi.tar.xz
1414
RUN mkdir -p /tmp/dc-downloads /tmp/dc-extracted/gcc \
1515
&& curl -o /tmp/dc-downloads/gcc-arm.tar.xz $GCC_URI \

azure-pipelines-templates/download-install-arm-gcc-toolchain.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
parameters:
55
- name: gccArmVersion
66
type: string
7-
default: "14.2.rel1"
7+
default: "14.3.rel1"
88

99
steps:
1010
- task: Cache@2
1111
condition: eq(variables.GccArm_Version, '')
1212
displayName: Cache latest ARM GCC toolchain
1313
inputs:
14-
key: "gcc-14_2_rel1 | gccUpdateKey"
14+
key: "gcc-14_3_rel1 | gccUpdateKey"
1515
restoreKeys: gccUpdateKey
1616
path: $(Agent.TempDirectory)\arm-gnu-toolchain-${{ parameters.gccArmVersion }}-mingw-w64-i686-arm-none-eabi
1717
cacheHitVar: GCC_CACHE_RESTORED

install-scripts/install-arm-gcc-toolchain.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ param (
1212

1313
# set default GNU GCC version
1414
if ([string]::IsNullOrEmpty($Version)) {
15-
$Version = "14.2.rel1"
15+
$Version = "14.3.rel1"
1616
}
1717

1818
# check if running on Azure Pipelines by looking at this two environment variables

0 commit comments

Comments
 (0)