Skip to content

Commit 1b03811

Browse files
chore(builder): update ARM GCC toolchain
1 parent dd04a74 commit 1b03811

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

builder/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ RUN apt-get update && \
1919
gawk && \
2020
rm -rf /var/lib/apt/lists/*
2121

22-
RUN wget --quiet https://developer.arm.com/-/media/Files/downloads/gnu-rm/10-2020q4/gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2 -O - \
23-
| tar -xj -C /opt
22+
RUN wget --quiet https://developer.arm.com/-/media/Files/downloads/gnu/14.2.rel1/binrel/arm-gnu-toolchain-14.2.rel1-x86_64-arm-none-eabi.tar.xz -O - \
23+
| tar -xJ -C /opt
2424

2525
RUN python3 -m pip install -U pip setuptools \
2626
&& python3 -m pip install \
@@ -34,7 +34,7 @@ RUN python3 -m pip install -U pip setuptools \
3434
RUN ln -s /usr/lib/x86_64-linux-gnu/libclang-14.so.14.0.0 /usr/lib/libclang-14.so && \
3535
ln -s /usr/lib/x86_64-linux-gnu/libclang-14.so.14.0.0 /usr/lib/libclang.so
3636

37-
ENV PATH=/opt/gcc-arm-none-eabi-10-2020-q4-major/bin/:${PATH}
37+
ENV PATH=/opt/arm-gnu-toolchain-14.2.rel1-x86_64-arm-none-eabi/bin/:${PATH}
3838

3939
VOLUME ["/src"]
4040

0 commit comments

Comments
 (0)