1# 2# Docker mips64el cross-compiler target 3# 4# This docker target builds on the debian Stretch base image. 5# 6 7FROM qemu:debian9 8 9MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org> 10 11# Add the foreign architecture we want and install dependencies 12RUN dpkg --add-architecture mips64el && \ 13 apt update && \ 14 DEBIAN_FRONTEND=noninteractive eatmydata \ 15 apt install -y --no-install-recommends \ 16 gcc-mips64el-linux-gnuabi64 17 18RUN apt update && \ 19 DEBIAN_FRONTEND=noninteractive eatmydata \ 20 apt build-dep -yy -a mips64el qemu 21 22# Specify the cross prefix for this image (see tests/docker/common.rc) 23ENV QEMU_CONFIGURE_OPTS --cross-prefix=mips64el-linux-gnuabi64- 24 25# Install extra libraries to increase code coverage 26RUN apt update && \ 27 DEBIAN_FRONTEND=noninteractive eatmydata \ 28 apt install -y --no-install-recommends \ 29 libbz2-dev:mips64el \ 30 liblzo2-dev:mips64el \ 31 librdmacm-dev:mips64el \ 32 libsnappy-dev:mips64el 33