@@ -140,12 +140,12 @@ FROM nuttx-toolchain-base AS nuttx-toolchain-arm
140
140
# Download the latest ARM clang toolchain prebuilt by ARM
141
141
RUN mkdir -p clang-arm-none-eabi && \
142
142
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" \
143
- | tar -C clang-arm-none-eabi --strip-components= 1 -xJ
143
+ | tar -C clang-arm-none-eabi --strip-components 1 -xJ
144
144
145
145
# Download the latest ARM GCC toolchain prebuilt by ARM
146
146
RUN mkdir -p gcc-arm-none-eabi && \
147
147
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" \
148
- | tar -C gcc-arm-none-eabi --strip-components= 1 -xJ
148
+ | tar -C gcc-arm-none-eabi --strip-components 1 -xJ
149
149
150
150
# ##############################################################################
151
151
# Build image for tool required by ARM64 builds
@@ -154,7 +154,7 @@ FROM nuttx-toolchain-base AS nuttx-toolchain-arm64
154
154
# Download the latest ARM64 GCC toolchain prebuilt by ARM
155
155
RUN mkdir gcc-aarch64-none-elf && \
156
156
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" \
157
- | tar -C gcc-aarch64-none-elf --strip-components= 1 -xJ
157
+ | tar -C gcc-aarch64-none-elf --strip-components 1 -xJ
158
158
159
159
# ##############################################################################
160
160
# Build image for tool required by AVR32 builds
@@ -251,7 +251,7 @@ FROM nuttx-toolchain-base AS nuttx-toolchain-sparc
251
251
# Download the SPARC GCC toolchain prebuilt by Gaisler
252
252
RUN mkdir -p sparc-gaisler-elf-gcc && \
253
253
curl -s -L "https://www.gaisler.com/anonftp/bcc2/bin/bcc-2.1.0-gcc-linux64.tar.xz" \
254
- | tar -C sparc-gaisler-elf-gcc --strip-components= 1 -xJ
254
+ | tar -C sparc-gaisler-elf-gcc --strip-components 1 -xJ
255
255
256
256
# ##############################################################################
257
257
# Build image for tool required by ESP32 builds
@@ -260,15 +260,15 @@ FROM nuttx-toolchain-base AS nuttx-toolchain-esp32
260
260
# Download the latest ESP32 GCC toolchain prebuilt by Espressif
261
261
RUN mkdir -p xtensa-esp32-elf-gcc && \
262
262
curl -s -L "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32-elf-12.2.0_20230208-x86_64-linux-gnu.tar.xz" \
263
- | tar -C xtensa-esp32-elf-gcc --strip-components= 1 -xJ
263
+ | tar -C xtensa-esp32-elf-gcc --strip-components 1 -xJ
264
264
265
265
RUN mkdir -p xtensa-esp32s2-elf-gcc && \
266
266
curl -s -L "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32s2-elf-12.2.0_20230208-x86_64-linux-gnu.tar.xz" \
267
- | tar -C xtensa-esp32s2-elf-gcc --strip-components= 1 -xJ
267
+ | tar -C xtensa-esp32s2-elf-gcc --strip-components 1 -xJ
268
268
269
269
RUN mkdir -p xtensa-esp32s3-elf-gcc && \
270
270
curl -s -L "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32s3-elf-12.2.0_20230208-x86_64-linux-gnu.tar.xz" \
271
- | tar -C xtensa-esp32s3-elf-gcc --strip-components= 1 -xJ
271
+ | tar -C xtensa-esp32s3-elf-gcc --strip-components 1 -xJ
272
272
273
273
RUN echo "ESP Binaries: 2022/01/26"
274
274
RUN mkdir -p /tools/blobs && cd /tools/blobs \
@@ -288,7 +288,7 @@ FROM nuttx-toolchain-base AS nuttx-toolchain-wasm
288
288
# Download the latest WASI-enabled WebAssembly C/C++ toolchain prebuilt by WASM
289
289
RUN mkdir -p wasi-sdk && \
290
290
curl -s -L "https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-19/wasi-sdk-19.0-linux.tar.gz" \
291
- | tar -C wasi-sdk --strip-components= 1 -xz
291
+ | tar -C wasi-sdk --strip-components 1 -xz
292
292
293
293
# Download the latest "wamrc" AOT compiler prebuilt by WAMR
294
294
RUN mkdir -p wamrc && \
0 commit comments