2018-06-23 23:53:13 +02:00
|
|
|
#
|
|
|
|
# Docker cross-compiler target
|
|
|
|
#
|
|
|
|
# This docker target builds on the debian stretch base image,
|
|
|
|
# using a prebuilt toolchains for Xtensa cores from:
|
|
|
|
# https://github.com/foss-xtensa/toolchain/releases
|
|
|
|
#
|
|
|
|
FROM debian:stretch-slim
|
|
|
|
|
|
|
|
RUN apt-get update && \
|
2019-07-23 16:15:27 +02:00
|
|
|
DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata && \
|
|
|
|
DEBIAN_FRONTEND=noninteractive eatmydata \
|
2018-06-23 23:53:13 +02:00
|
|
|
apt-get install -y --no-install-recommends \
|
|
|
|
build-essential \
|
|
|
|
ca-certificates \
|
|
|
|
curl \
|
|
|
|
gettext \
|
|
|
|
git \
|
2019-09-23 20:11:40 +02:00
|
|
|
python3-minimal
|
2018-06-23 23:53:13 +02:00
|
|
|
|
2020-07-09 16:13:26 +02:00
|
|
|
ENV CPU_LIST dc232b dc233c de233_fpu dsp3400
|
|
|
|
ENV TOOLCHAIN_RELEASE 2020.07
|
2018-06-23 23:53:13 +02:00
|
|
|
|
|
|
|
RUN for cpu in $CPU_LIST; do \
|
|
|
|
curl -#SL http://github.com/foss-xtensa/toolchain/releases/download/$TOOLCHAIN_RELEASE/x86_64-$TOOLCHAIN_RELEASE-xtensa-$cpu-elf.tar.gz \
|
|
|
|
| tar -xzC /opt; \
|
|
|
|
done
|
|
|
|
|
2020-07-09 16:13:26 +02:00
|
|
|
ENV PATH $PATH:/opt/$TOOLCHAIN_RELEASE/xtensa-dc232b-elf/bin:/opt/$TOOLCHAIN_RELEASE/xtensa-dc233c-elf/bin:/opt/$TOOLCHAIN_RELEASE/xtensa-de233_fpu-elf/bin:/opt/$TOOLCHAIN_RELEASE/xtensa-dsp3400-elf/bin
|