Skip to content

Commit

Permalink
add ti msp430-gcc-elf 8.3.0 toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 committed Oct 15, 2019
1 parent ca77301 commit c6e22b8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,13 @@ RUN echo 'Installing ESP32 toolchain' >&2 && \

ENV PATH $PATH:/opt/esp/xtensa-esp32-elf/bin

ARG MSP430_URL=https://software-dl.ti.com/msp430/msp430_public_sw/mcu/msp430/MSPGCC/latest/exports
ARG MSP430_VERSION=8.3.0.16_linux64
RUN echo 'Installing TI MSP430 ELF toolchain' >&2 && \
wget -q ${MSP430_URL}/msp430-gcc-${MSP430_VERSION}.tar.bz2 -O- \
| tar -C /opt -xj
ENV PATH $PATH:/opt/msp430-gcc-${MSP430_VERSION}/bin

# install required python packages from file
COPY requirements.txt /tmp/requirements.txt
RUN echo 'Installing python3 packages' >&2 \
Expand Down

0 comments on commit c6e22b8

Please sign in to comment.