Skip to content

Commit 94b1fce

Browse files
authored
Add download of esp32 crosscompiler (#73)
* Add download of esp32 crosscompiler * Delete esp32 tar
1 parent 102b9f1 commit 94b1fce

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

micro-ROS-static-library-builder/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ RUN apt update \
2020
&& rm -rf gcc-arm-none-eabi-7-2017-q4-major-linux.tar.bz2 gcc-arm-none-eabi-7-2017-q4-major/share/doc \
2121
&& wget --no-check-certificate https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2020q2/gcc-arm-none-eabi-9-2020-q2-update-x86_64-linux.tar.bz2 \
2222
&& tar -xvf gcc-arm-none-eabi-9-2020-q2-update-x86_64-linux.tar.bz2 \
23-
&& rm -rf gcc-arm-none-eabi-9-2020-q2-update-x86_64-linux.tar.bz2 gcc-arm-none-eabi-9-2020-q2-update/share/doc
23+
&& rm -rf gcc-arm-none-eabi-9-2020-q2-update-x86_64-linux.tar.bz2 gcc-arm-none-eabi-9-2020-q2-update/share/doc \
24+
&& wget --no-check-certificate https://github.com/espressif/crosstool-NG/releases/download/esp-2021r2/xtensa-esp32-elf-gcc8_4_0-esp-2021r2-linux-amd64.tar.gz \
25+
&& tar -xvf xtensa-esp32-elf-gcc8_4_0-esp-2021r2-linux-amd64.tar.gz \
26+
&& rm -rf xtensa-esp32-elf-gcc8_4_0-esp-2021r2-linux-amd64.tar.gz
2427

2528
# Install micro-ROS
2629
RUN git clone -b galactic https://github.com/micro-ROS/micro-ros-build.git src/micro-ros-build \

0 commit comments

Comments
 (0)