Skip to content

Commit dfd605e

Browse files
authored
fix: ✂️change v7-a* to v7-a+simd in Dockerfile
1 parent 72f84c9 commit dfd605e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN <<-"EOF" bash
2424

2525
find "$toolchain"/arm-none-eabi/lib/thumb -mindepth 1 -maxdepth 1 ! -name 'v7-a+simd' -exec rm -rf {} +
2626
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*' -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 {} +
2828

2929
apk cache clean # Cleanup image
3030
EOF
@@ -49,4 +49,4 @@ COPY build-tools/build.sh /build.sh
4949
RUN chmod +x /build.sh
5050
COPY LICENSE /LICENSE
5151

52-
ENTRYPOINT ["/build.sh"]
52+
ENTRYPOINT ["/build.sh"]

0 commit comments

Comments
 (0)