2021-10-26 13:22:11 +03:00
|
|
|
#
|
|
|
|
# Docker toolchain cross-compiler
|
|
|
|
#
|
|
|
|
# This dockerfile is used for building a cross-compiler toolchain.
|
|
|
|
# The script for building the toolchain is supplied via extra-files.
|
|
|
|
#
|
2022-09-14 18:59:48 +03:00
|
|
|
FROM docker.io/library/debian:11-slim
|
2021-10-26 13:22:11 +03:00
|
|
|
|
|
|
|
# Install build utilities for building gcc and glibc.
|
|
|
|
# ??? The build-dep isn't working, missing a number of
|
|
|
|
# minimal build dependiencies, e.g. libmpc.
|
|
|
|
|
|
|
|
RUN apt update && \
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata && \
|
|
|
|
DEBIAN_FRONTEND=noninteractive eatmydata \
|
|
|
|
apt install -y --no-install-recommends \
|
|
|
|
bison \
|
2022-09-14 18:59:48 +03:00
|
|
|
ca-certificates \
|
2021-10-26 13:22:11 +03:00
|
|
|
flex \
|
|
|
|
gawk \
|
|
|
|
libmpc-dev \
|
|
|
|
libmpfr-dev \
|
|
|
|
rsync \
|
|
|
|
texinfo \
|
|
|
|
wget && \
|
|
|
|
DEBIAN_FRONTEND=noninteractive eatmydata \
|
|
|
|
apt build-dep -yy --arch-only gcc glibc
|
|
|
|
|
|
|
|
ADD build-toolchain.sh /root/build-toolchain.sh
|
|
|
|
|
|
|
|
RUN cd /root && ./build-toolchain.sh
|
|
|
|
|
|
|
|
# Throw away the extra toolchain build deps, the downloaded source,
|
|
|
|
# and the build trees by restoring the original debian10 image,
|
|
|
|
# then copying the built toolchain from stage 0.
|
2022-09-14 18:59:48 +03:00
|
|
|
FROM docker.io/library/debian:bullseye-slim
|
2021-10-26 13:22:11 +03:00
|
|
|
COPY --from=0 /usr/local /usr/local
|