cederom commented on code in PR #17849:
URL: https://github.com/apache/nuttx/pull/17849#discussion_r2704569297


##########
tools/ci/docker/linux/Dockerfile:
##########
@@ -138,59 +141,54 @@ CMD [ "/bin/bash" ]
 # Base image that should be used to prepare arch build images
 ###############################################################################
 FROM builder-base AS nuttx-toolchain-base
-
 RUN mkdir -p /tools
 WORKDIR /tools
 
 ###############################################################################
 # Build image for tool required by ARM builds
 ###############################################################################
 FROM nuttx-toolchain-base AS nuttx-toolchain-arm
-# Download the latest ARM clang toolchain prebuilt by ARM
+# ARM Clang 19.1.5
 RUN mkdir -p clang-arm-none-eabi && \
-  curl -s -L  
"https://github.com/ARM-software/LLVM-embedded-toolchain-for-Arm/releases/download/release-17.0.1/LLVMEmbeddedToolchainForArm-17.0.1-Linux-x86_64.tar.xz";
 \
+  curl -s -L  
"https://github.com/ARM-software/LLVM-embedded-toolchain-for-Arm/releases/download/release-19.1.5/LLVM-ET-Arm-19.1.5-Linux-x86_64.tar.xz";
 \
   | tar -C clang-arm-none-eabi --strip-components 1 -xJ
 
-# Download the latest ARM GCC toolchain prebuilt by ARM
+# ARM GCC 14.3
 RUN mkdir -p gcc-arm-none-eabi && \
-  curl -s -L  
"https://developer.arm.com/-/media/Files/downloads/gnu/13.2.Rel1/binrel/arm-gnu-toolchain-13.2.Rel1-x86_64-arm-none-eabi.tar.xz";
 \
+  curl -s -L  
"https://developer.arm.com/-/media/Files/downloads/gnu/14.3.Rel1/binrel/arm-gnu-toolchain-14.3.Rel1-x86_64-arm-none-eabi.tar.xz";
 \
   | tar -C gcc-arm-none-eabi --strip-components 1 -xJ
 
 ###############################################################################
 # Build image for tool required by ARM64 builds
 ###############################################################################
 FROM nuttx-toolchain-base AS nuttx-toolchain-arm64
-# Download the latest ARM64 GCC toolchain prebuilt by ARM
+# ARM64 GCC 14.3
 RUN mkdir gcc-aarch64-none-elf && \
-  curl -s -L  
"https://developer.arm.com/-/media/Files/downloads/gnu/13.2.Rel1/binrel/arm-gnu-toolchain-13.2.Rel1-x86_64-aarch64-none-elf.tar.xz";
 \
+  curl -s -L  
"https://developer.arm.com/-/media/Files/downloads/gnu/14.3.Rel1/binrel/arm-gnu-toolchain-14.3.Rel1-x86_64-aarch64-none-elf.tar.xz";
 \

Review Comment:
   👍🏻 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to