2 # Docker cross-compiler target
4 # This docker target builds on the debian stretch base image,
5 # using a prebuilt toolchains for Xtensa cores from:
6 # https://github.com/foss-xtensa/toolchain/releases
8 FROM debian:stretch-slim
10 RUN apt-get update && \
11 DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata && \
12 DEBIAN_FRONTEND=noninteractive eatmydata \
13 apt-get install -y --no-install-recommends \
23 ENV CPU_LIST csp dc232b dc233c
24 ENV TOOLCHAIN_RELEASE 2018.02
26 RUN for cpu in $CPU_LIST; do \
27 curl -#SL http://github.com/foss-xtensa/toolchain/releases/download/$TOOLCHAIN_RELEASE/x86_64-$TOOLCHAIN_RELEASE-xtensa-$cpu-elf.tar.gz \
31 ENV PATH $PATH:/opt/$TOOLCHAIN_RELEASE/xtensa-dc232b-elf/bin:/opt/$TOOLCHAIN_RELEASE/xtensa-dc233c-elf/bin:/opt/$TOOLCHAIN_RELEASE/xtensa-csp-elf/bin