File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ LABEL org.opencontainers.image.licenses=MIT
1010
1111# Install Required Packages and ARM Toolchain
1212RUN apk add --no-cache bash
13- RUN mkdir "/arm-none-eabi-toolchain" && wget -O- "https://developer.arm.com/-/media/Files/downloads/gnu/13.3 .rel1/binrel/arm-gnu-toolchain-13.3 .rel1-x86_64-arm-none-eabi.tar.xz" \
13+ RUN mkdir "/arm-none-eabi-toolchain" && wget -O- "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" \
1414 | tar Jxf - -C "/arm-none-eabi-toolchain" --strip-components=1
1515RUN <<-"EOF" bash
1616 set -e
@@ -19,12 +19,12 @@ RUN <<-"EOF" bash
1919 mkdir -p "$toolchain"
2020
2121 rm -rf "$toolchain" /{share,include}
22- rm -rf "$toolchain" /lib/gcc/arm-none-eabi/13.3 .1/arm
23- rm -f "$toolchain" /bin/arm-none-eabi-{gdb,gdb-py,cpp,gcc-13.3 .1}
22+ rm -rf "$toolchain" /lib/gcc/arm-none-eabi/14.2 .1/arm
23+ rm -f "$toolchain" /bin/arm-none-eabi-{gdb,gdb-py,cpp,gcc-14.2 .1}
2424
2525 find "$toolchain" /arm-none-eabi/lib/thumb -mindepth 1 -maxdepth 1 ! -name 'v7-a+simd' -exec rm -rf {} +
26- find "$toolchain" /lib/gcc/arm-none-eabi/13.3 .1/thumb -mindepth 1 -maxdepth 1 ! -name 'v7-a+simd' -exec rm -rf {} +
27- find "$toolchain" /arm-none-eabi/include/c++/13.3 .1/arm-none-eabi/thumb -mindepth 1 -maxdepth 1 ! -name 'v7-a+simd' -exec rm -rf {} +
26+ find "$toolchain" /lib/gcc/arm-none-eabi/14.2 .1/thumb -mindepth 1 -maxdepth 1 ! -name 'v7-a+simd' -exec rm -rf {} +
27+ find "$toolchain" /arm-none-eabi/include/c++/14.2 .1/arm-none-eabi/thumb -mindepth 1 -maxdepth 1 ! -name 'v7-a+simd' -exec rm -rf {} +
2828
2929 apk cache clean # Cleanup image
3030EOF
You can’t perform that action at this time.
0 commit comments