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