Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add TI msp430 gcc 8.3.0 ELF/newlib toolchain #91

Merged
merged 1 commit into from
Oct 19, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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