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