2 # Docker mipsel cross-compiler target
4 # This docker target builds on the debian Stretch base image.
8 MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
10 # Add the foreign architecture we want and install dependencies
11 RUN dpkg --add-architecture mipsel
13 DEBIAN_FRONTEND=noninteractive eatmydata \
14 apt install -y --no-install-recommends \
18 DEBIAN_FRONTEND=noninteractive eatmydata \
19 apt build-dep -yy -a mipsel --arch-only qemu
21 # Specify the cross prefix for this image (see tests/docker/common.rc)
22 ENV QEMU_CONFIGURE_OPTS --cross-prefix=mipsel-linux-gnu-
24 # Install extra libraries to increase code coverage
26 DEBIAN_FRONTEND=noninteractive eatmydata \
27 apt install -y --no-install-recommends \
30 librdmacm-dev:mipsel \