2 # Docker mipsel cross-compiler target
4 # This docker target builds on the base debian image.
7 MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
9 # Add the foreign architecture we want and install dependencies
10 RUN dpkg --add-architecture mipsel
12 RUN DEBIAN_FRONTEND=noninteractive eatmydata \
13 apt-get install -y --no-install-recommends \
14 crossbuild-essential-mipsel
16 # Specify the cross prefix for this image (see tests/docker/common.rc)
17 ENV QEMU_CONFIGURE_OPTS --cross-prefix=mipsel-linux-gnu-
19 RUN DEBIAN_FRONTEND=noninteractive eatmydata \
20 apt-get build-dep -yy -a mipsel qemu
21 RUN DEBIAN_FRONTEND=noninteractive eatmydata \
22 apt-get install -y --no-install-recommends \
23 glusterfs-common:mipsel \
26 libncursesw5-dev:mipsel \
28 librdmacm-dev:mipsel \