target/mips: Move MUL opcode check from decode_mxu() to decode_legacy()
[qemu/ar7.git] / tests / docker / dockerfiles / debian-mips64el-cross.docker
blobc990b683b7a1d0f4d7aa17e2e631da7be3df13c6
2 # Docker mips64el cross-compiler target
4 # This docker target builds on the debian Stretch base image.
7 FROM qemu/debian10
9 MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
11 # Add the foreign architecture we want and install dependencies
12 RUN dpkg --add-architecture mips64el && \
13     apt update && \
14     DEBIAN_FRONTEND=noninteractive eatmydata \
15     apt install -y --no-install-recommends \
16         gcc-mips64el-linux-gnuabi64
18 RUN apt update && \
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
27 RUN apt update && \
28     DEBIAN_FRONTEND=noninteractive eatmydata \
29     apt install -y --no-install-recommends \
30         libbz2-dev:mips64el \
31         liblzo2-dev:mips64el \
32         librdmacm-dev:mips64el \
33         libsnappy-dev:mips64el