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-get update
14RUN DEBIAN_FRONTEND=noninteractive eatmydata \
15    apt-get install -y --no-install-recommends \
16        gcc-mips64el-linux-gnuabi64
17
18RUN DEBIAN_FRONTEND=noninteractive eatmydata \
19    apt-get build-dep -yy -a mips64el qemu
20
21# Specify the cross prefix for this image (see tests/docker/common.rc)
22ENV QEMU_CONFIGURE_OPTS --cross-prefix=mips64el-linux-gnuabi64-
23
24# Install extra libraries to increase code coverage
25RUN DEBIAN_FRONTEND=noninteractive eatmydata \
26    apt-get install -y --no-install-recommends \
27        libbz2-dev:mips64el \
28        liblzo2-dev:mips64el \
29        librdmacm-dev:mips64el \
30        libsnappy-dev:mips64el
31