1# 2# Docker Hexagon cross-compiler target 3# 4# This docker target is used for building hexagon tests. As it also 5# needs to be able to build QEMU itself in CI we include its 6# build-deps. 7# 8FROM docker.io/library/debian:11-slim 9 10# Duplicate deb line as deb-src 11RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list 12RUN apt-get update && \ 13 DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata && \ 14 DEBIAN_FRONTEND=noninteractive eatmydata \ 15# Install common build utilities 16 apt-get install -y --no-install-recommends \ 17 curl \ 18 xz-utils \ 19 ca-certificates \ 20 bison \ 21 flex \ 22 git \ 23 ninja-build \ 24 python3-pip \ 25 python3-setuptools \ 26 python3-venv \ 27 python3-wheel && \ 28# Install QEMU build deps for use in CI 29 DEBIAN_FRONTEND=noninteractive eatmydata \ 30 apt build-dep -yy --arch-only qemu 31 32RUN /usr/bin/pip3 install tomli 33 34ENV TOOLCHAIN_INSTALL /opt 35ENV TOOLCHAIN_RELEASE 16.0.0 36ENV TOOLCHAIN_BASENAME "clang+llvm-${TOOLCHAIN_RELEASE}-cross-hexagon-unknown-linux-musl" 37ENV TOOLCHAIN_URL https://codelinaro.jfrog.io/artifactory/codelinaro-toolchain-for-hexagon/v${TOOLCHAIN_RELEASE}/${TOOLCHAIN_BASENAME}.tar.xz 38 39RUN curl -#SL "$TOOLCHAIN_URL" | tar -xJC "$TOOLCHAIN_INSTALL" 40ENV PATH $PATH:${TOOLCHAIN_INSTALL}/${TOOLCHAIN_BASENAME}/x86_64-linux-gnu/bin 41# As a final step configure the user (if env is defined) 42ARG USER 43ARG UID 44RUN if [ "${USER}" ]; then \ 45 id ${USER} 2>/dev/null || useradd -u ${UID} -U ${USER}; fi 46