target/mips: Move MUL opcode check from decode_mxu() to decode_legacy()
[qemu/ar7.git] / tests / docker / dockerfiles / debian-amd64-cross.docker
blob870109ef6afe3a26385a306cbb0e925f1f83ae31
2 # Docker x86_64 cross target
4 # This docker target is used on non-x86_64 machines which need the
5 # x86_64 cross compilers installed.
7 FROM qemu/debian10
8 MAINTAINER Alex BennĂ©e <alex.bennee@linaro.org>
10 # Add the foreign architecture we want and install dependencies
11 RUN dpkg --add-architecture amd64
12 RUN apt update && \
13     DEBIAN_FRONTEND=noninteractive eatmydata \
14     apt install -y --no-install-recommends \
15         crossbuild-essential-amd64
16 RUN apt update && \
17     DEBIAN_FRONTEND=noninteractive eatmydata \
18     apt build-dep -yy -a amd64 --arch-only qemu
20 # Specify the cross prefix for this image (see tests/docker/common.rc)
21 ENV QEMU_CONFIGURE_OPTS --cross-prefix=x86_64-linux-gnu-
22 ENV DEF_TARGET_LIST x86_64-softmmu,x86_64-linux-user,i386-softmmu,i386-linux-user