target/mips: Move MUL opcode check from decode_mxu() to decode_legacy()
[qemu/ar7.git] / tests / docker / dockerfiles / debian-armel-cross.docker
blobb7b1a3585f8ddbea79dbd2f65e4d5ee91cffb35c
2 # Docker armel cross-compiler target
4 # This docker target builds on the debian Stretch base image.
6 FROM qemu/debian10
7 MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
9 # Add the foreign architecture we want and install dependencies
10 RUN dpkg --add-architecture armel && \
11     apt update && \
12     apt install -yy crossbuild-essential-armel && \
13     DEBIAN_FRONTEND=noninteractive eatmydata \
14     apt build-dep -yy -a armel --arch-only qemu
16 # Specify the cross prefix for this image (see tests/docker/common.rc)
17 ENV QEMU_CONFIGURE_OPTS --cross-prefix=arm-linux-gnueabi-
18 ENV DEF_TARGET_LIST arm-softmmu,arm-linux-user,armeb-linux-user
20 RUN apt update && \
21     DEBIAN_FRONTEND=noninteractive eatmydata \
22     apt install -y --no-install-recommends \
23         libbz2-dev:armel \
24         liblzo2-dev:armel \
25         librdmacm-dev:armel \
26         libsnappy-dev:armel